Added a single-tenant fedi server

This commit is contained in:
2024-12-02 01:21:21 -06:00
parent b332599758
commit 7bf972b0d9

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"