Initial import

This commit is contained in:
3wc 2020-09-08 18:38:35 +02:00
commit 94c6545986
3 changed files with 60 additions and 0 deletions

6
.envrc.sample Normal file
View File

@ -0,0 +1,6 @@
export DOMAIN=matrix.example.com
export STACK_NAME=matrix
export LETS_ENCRYPT_ENV=production
export ENTRYPOINT_CONF_VERSION=v1

47
compose.yml Normal file
View File

@ -0,0 +1,47 @@
---
version: "3.8"
services:
synapse:
image: "matrixdotorg/synapse:latest"
volumes:
- "data:/data"
environment:
- VIRTUAL_HOST=${DOMAIN}
- VIRTUAL_PORT=8008
- LETSENCRYPT_HOST=${DOMAIN}
- SYNAPSE_SERVER_NAME=${DOMAIN}
- SYNAPSE_REPORT_STATS=no
networks:
- proxy
deploy:
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}"
restart_policy:
condition: on-failure
delay: "60s"
max_attempts: 3
window: 120s
entrypoint: /docker-entrypoint.sh
configs:
- source: entrypoint_conf
target: /docker-entrypoint.sh
mode: 0555
volumes:
data:
networks:
proxy:
external: true
internal:
configs:
entrypoint_conf:
name: ${STACK_NAME}_entrypoint_${ENTRYPOINT_CONF_VERSION}
file: entrypoint.sh.tmpl
template_driver: golang

7
entrypoint.sh.tmpl Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [[ ! -f /data/homeserver.yaml ]]; then
/start.py generate
fi
/start.py