mirror of
https://github.com/ArcticFoxes-net/Synapse-Docker-Compose.git
synced 2024-10-01 08:25:44 -04:00
85 lines
2.0 KiB
YAML
85 lines
2.0 KiB
YAML
# This compose file is compatible with Compose itself, it might need some
|
|
# adjustments to run properly with stack.
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
synapse:
|
|
image: docker.io/matrixdotorg/synapse:latest
|
|
# Since synapse does not retry to connect to the database, restart upon
|
|
# failure
|
|
restart: unless-stopped
|
|
container_name: synapse
|
|
# See the readme for a full documentation of the environment settings
|
|
# NOTE: You must edit homeserver.yaml to use postgres, it defaults to sqlite
|
|
environment:
|
|
- SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
|
volumes:
|
|
- ./files:/data:Z
|
|
depends_on:
|
|
- postgres
|
|
networks:
|
|
- matrix
|
|
|
|
postgres:
|
|
image: docker.io/postgres:alpine
|
|
restart: unless-stopped
|
|
container_name: postgres
|
|
# Change that password, of course!
|
|
environment:
|
|
- POSTGRES_USER=synapse
|
|
- POSTGRES_PASSWORD=changeme
|
|
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
|
|
volumes:
|
|
- ./schemas:/var/lib/postgresql/data:Z
|
|
networks:
|
|
- matrix
|
|
|
|
element:
|
|
image: vectorim/element-web:latest
|
|
restart: unless-stopped
|
|
container_name: element
|
|
volumes:
|
|
- ./element-config.json:/app/config.json:Z
|
|
networks:
|
|
- matrix
|
|
|
|
coturn:
|
|
image: coturn/coturn:alpine
|
|
restart: unless-stopped
|
|
container_name: coturn
|
|
volumes:
|
|
- ./coturn/turnserver.conf:/etc/turnserver.conf:Z
|
|
- ./swag/etc/letsencrypt/:/keys:Z
|
|
depends_on:
|
|
- swag
|
|
network_mode: host
|
|
|
|
swag:
|
|
image: ghcr.io/linuxserver/swag
|
|
restart: unless-stopped
|
|
container_name: swag
|
|
cap_add:
|
|
- NET_ADMIN
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- URL=yourdomain.tld
|
|
- SUBDOMAINS=matrix,app,turn
|
|
- VALIDATION=http
|
|
- EMAIL=changeme@yourdomain.tld
|
|
- ONLY_SUBDOMAINS=true
|
|
volumes:
|
|
- ./swag:/config:Z
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
ports:
|
|
- 443:443
|
|
- 80:80
|
|
networks:
|
|
- matrix
|
|
|
|
networks:
|
|
matrix:
|