ansible/roles/docker/templates/gotosocial-compose.yml.j2

36 lines
1001 B
Plaintext
Raw Normal View History

version: "3.3"
services:
gotosocial:
image: superseriousbusiness/gotosocial:0.16.0
container_name: gotosocial
user: 1000:1000
extra_hosts:
- 'auth.thesatelliteoflove.com:172.20.0.2'
environment:
GTS_HOST: social.thesatelliteoflove.com
GTS_DB_TYPE: sqlite
GTS_DB_ADDRESS: /gotosocial/storage/sqlite.db
GTS_LETSENCRYPT_ENABLED: "false"
GTS_LETSENCRYPT_EMAIL_ADDRESS: ""
GTS_TRUSTED_PROXIES: "172.20.0.2"
GTS_ACCOUNT_DOMAIN: thesatelliteoflove.com
GTS_OIDC_ENABLED: "true"
GTS_OIDC_IDP_NAME: "Authentik"
GTS_OIDC_ISSUER: https://auth.thesatelliteoflove.com/application/o/gotosocial/
GTS_OIDC_CLIENT_ID: {{ gts_oidc_client_id }}
GTS_OIDC_CLIENT_SECRET: {{ gts_oidc_client_secret }}
GTS_OIDC_LINK_EXISTING: "true"
TZ: UTC
volumes:
- gotosocial:/gotosocial/storage
restart: "always"
volumes:
gotosocial:
driver: local
networks:
default:
external: true
name: lava