Initial import

This commit is contained in:
Glenn Y. Rolland 2022-08-28 18:23:34 +02:00
commit 07c88421b1

27
docker-compose.yml Normal file
View file

@ -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