commit 07c88421b13b4ce8a5c938c448cdab637ea18035 Author: Glenn Date: Sun Aug 28 18:23:34 2022 +0200 Initial import diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..405e41d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,27 @@ +version: "3.3" + +services: + gotosocial: + image: superseriousbusiness/gotosocial:latest + container_name: gotosocial + user: 1000:1000 + networks: + - gotosocial + environment: + GTS_HOST: example.org + GTS_DB_TYPE: sqlite + GTS_DB_ADDRESS: /gotosocial/storage/sqlite.db + GTS_LETSENCRYPT_ENABLED: "false" + GTS_LETSENCRYPT_EMAIL_ADDRESS: "" + ports: + - "443:8080" + #- "80:80" + volumes: + - ~/gotosocial/data:/gotosocial/storage + restart: "always" + +networks: + gotosocial: + ipam: + driver: default +