From 07c88421b13b4ce8a5c938c448cdab637ea18035 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 28 Aug 2022 18:23:34 +0200 Subject: [PATCH] Initial import --- docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docker-compose.yml 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 +