2022-03-01 13:17:36 +00:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
gotosocial:
|
2022-04-19 11:45:54 +01:00
|
|
|
image: superseriousbusiness/gotosocial:latest
|
|
|
|
container_name: gotosocial
|
|
|
|
user: 1000:1000
|
2022-03-01 13:17:36 +00:00
|
|
|
networks:
|
|
|
|
- gotosocial
|
|
|
|
environment:
|
2022-04-19 11:45:54 +01:00
|
|
|
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"
|
2022-03-01 13:17:36 +00:00
|
|
|
volumes:
|
2022-04-19 11:45:54 +01:00
|
|
|
- ~/gotosocial/data:/gotosocial/storage
|
2022-03-01 13:17:36 +00:00
|
|
|
restart: "always"
|
|
|
|
|
|
|
|
networks:
|
|
|
|
gotosocial:
|
|
|
|
ipam:
|
2022-04-19 11:45:54 +01:00
|
|
|
driver: default
|