2022-08-28 16:23:34 +00:00
|
|
|
version: "3.3"
|
|
|
|
|
|
|
|
services:
|
|
|
|
gotosocial:
|
2022-12-15 13:06:14 +00:00
|
|
|
build: .
|
2022-08-28 16:23:34 +00:00
|
|
|
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:
|
2022-12-15 13:06:14 +00:00
|
|
|
- gotosocial_data:/gotosocial/storage
|
2022-08-28 16:23:34 +00:00
|
|
|
restart: "always"
|
|
|
|
|
2022-12-15 13:06:14 +00:00
|
|
|
volumes:
|
|
|
|
gotosocial_data:
|
|
|
|
|
2022-08-28 16:23:34 +00:00
|
|
|
networks:
|
|
|
|
gotosocial:
|