--- version: "3.8" services: app: image: "matrixdotorg/synapse:v1.66.0" volumes: - "data:/data" depends_on: - db secrets: - db_password - registration_shared_secret - macaroon_secret_key - form_secret environment: - ENCRYPTED_BY_DEFAULT - AUTO_JOIN_ROOM - AUTO_JOIN_ROOM_ENABLED - DISABLE_FEDERATION - DOMAIN - ENABLE_3PID_LOOKUP - ENABLE_ALLOWLIST - ENABLE_REGISTRATION - FEDERATION_ALLOWLIST - LETSENCRYPT_HOST=${DOMAIN} - PASSWORD_LOGIN_ENABLED - REDACTION_RETENTION_PERIOD - ROOT_LOG_LEVEL - SERVE_SERVER_WELLKNOWN - SQL_LOG_LEVEL - STACK_NAME - SYNAPSE_ADMIN_EMAIL - SYNAPSE_REPORT_STATS=no - SYNAPSE_SERVER_NAME=${DOMAIN} - USER_IPS_MAX_AGE - VIRTUAL_HOST=${DOMAIN} - VIRTUAL_PORT=8008 - RETENTION_MAX_LIFETIME networks: - proxy - internal entrypoint: /docker-entrypoint.sh configs: - source: homeserver_yaml target: /data/homeserver.yaml - source: log_config target: /data/log.config - source: entrypoint_conf target: /docker-entrypoint.sh mode: 0555 deploy: restart_policy: condition: on-failure labels: - "traefik.enable=true" - "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8008" - "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)" - "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure" - "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}" - "coop-cloud.${STACK_NAME}.version=2.2.0+v1.66.0" db: image: postgres:13-alpine secrets: - db_password environment: - LC_COLLATE=C - LC_CTYPE=C - POSTGRES_DB=synapse - POSTGRES_INITDB_ARGS="-E \"UTF8\"" - POSTGRES_PASSWORD_FILE=/run/secrets/db_password - POSTGRES_USER=synapse networks: - internal healthcheck: test: ["CMD", "pg_isready", "-U", "synapse"] volumes: - postgres:/var/lib/postgresql/data deploy: labels: backupbot.backup: "true" backupbot.backup.pre-hook: "mkdir -p /tmp/backup/ && PGPASSWORD=$$(cat $${POSTGRES_PASSWORD_FILE}) pg_dump -U $${POSTGRES_USER} $${POSTGRES_DB} > /tmp/backup/backup.sql" backupbot.backup.post-hook: "rm -rf /tmp/backup" backupbot.backup.path: "/tmp/backup/" volumes: data: postgres: networks: proxy: external: true internal: configs: entrypoint_conf: name: ${STACK_NAME}_entrypoint_${ENTRYPOINT_CONF_VERSION} file: entrypoint.sh.tmpl template_driver: golang homeserver_yaml: name: ${STACK_NAME}_homserver_yaml_${HOMESERVER_YAML_VERSION} file: homeserver.yaml.tmpl template_driver: golang log_config: name: ${STACK_NAME}_log_config_${LOG_CONFIG_VERSION} file: log.config.tmpl template_driver: golang secrets: db_password: external: true name: ${STACK_NAME}_db_password_${SECRET_DB_PASSWORD_VERSION} registration_shared_secret: external: true name: ${STACK_NAME}_db_password_${SECRET_REGISTRATION_SHARED_SECRET_VERSION} macaroon_secret_key: external: true name: ${STACK_NAME}_db_password_${SECRET_MACAROON_SECRET_KEY_VERSION} form_secret: external: true name: ${STACK_NAME}_db_password_${SECRET_FORM_SECRET_VERSION}