Added a single-tenant fedi server

This commit is contained in:
Atridad Lahiji 2024-12-02 01:21:21 -06:00
parent b332599758
commit 7bf972b0d9
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438

14
compose/fedi.yml Normal file
View file

@ -0,0 +1,14 @@
services:
server:
image: superseriousbusiness/gotosocial:latest
environment:
GTS_HOST: fedi.atri.dad
GTS_DB_TYPE: sqlite
GTS_DB_ADDRESS: /data/sqlite.db
GTS_LETSENCRYPT_ENABLED: "false"
GTS_LETSENCRYPT_EMAIL_ADDRESS: ""
ports:
- "8181:8080"
volumes:
- ${ROOT_DIR}:/data
restart: "always"