diff --git a/Test/Docker/gotosocial/docker-compose.yml b/Test/Docker/gotosocial/docker-compose.yml new file mode 100644 index 0000000..f3468c6 --- /dev/null +++ b/Test/Docker/gotosocial/docker-compose.yml @@ -0,0 +1,26 @@ +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: + - "8080:8080" + #- "80:80" + volumes: + - D:\cong\compose-template\_tmp\gotosocial\data:/gotosocial/storage + restart: "unless-stopped" + +networks: + gotosocial: + ipam: + driver: default \ No newline at end of file