mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
0e2f31f4e3
* simplify docker-compose docs + example * Change note about reverse proxy, add traefik * Linting
27 lines
561 B
YAML
27 lines
561 B
YAML
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
|