fix: add config.yaml mount, update media keys, trusted-proxies

This commit is contained in:
2026-03-29 08:00:35 +02:00
parent 949e120082
commit 31e243a2bc
2 changed files with 15 additions and 7 deletions

View File

@@ -3,12 +3,19 @@ services:
image: superseriousbusiness/gotosocial:latest
container_name: gotosocial
restart: unless-stopped
entrypoint:
[
"/gotosocial/gotosocial",
"server",
"start",
"--config-path",
"/gotosocial/config.yaml",
]
environment:
- GTS_HOST=GTS_HOST_PLACEHOLDER
- GTS_ACCOUNT_DOMAIN=ACCOUNT_DOMAIN_PLACEHOLDER
- GTS_TRUSTED_PROXIES=127.0.0.1/32,172.18.0.1/16
- TZ=Europe/Prague
ports:
- "127.0.0.1:8080:8080"
volumes:
- ./data:/gotosocial/storage
- ./config/config.yaml:/gotosocial/config.yaml
user: "1000:1000"