ArcticFoxes-Synapse-Docker-.../docker-compose.yml

78 lines
1.9 KiB
YAML
Raw Normal View History

2022-01-13 15:22:49 +00:00
# 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
2022-01-13 15:40:59 +00:00
container_name: synapse
2022-01-13 15:22:49 +00:00
# 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:
2022-01-13 15:40:32 +00:00
- postgres
2022-01-13 15:26:55 +00:00
networks:
2022-01-13 16:03:12 +00:00
- matrix
2022-01-13 15:22:49 +00:00
2022-01-13 15:40:32 +00:00
postgres:
2022-01-13 15:22:49 +00:00
image: docker.io/postgres:12-alpine
2022-01-13 15:40:32 +00:00
restart: unless-stopped
container_name: postgres
2022-01-13 15:22:49 +00:00
# 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
2022-01-13 15:26:55 +00:00
networks:
2022-01-13 16:03:12 +00:00
- matrix
2022-01-13 16:24:04 +00:00
redis:
image: redis:alpine
restart: always
container_name: redis
networks:
- matrix
2022-01-13 15:26:55 +00:00
2022-01-13 15:40:32 +00:00
element:
2022-01-13 16:02:06 +00:00
image: vectorim/element-web:latest
2022-01-13 15:40:32 +00:00
restart: unless-stopped
container_name: element
2022-01-13 16:03:39 +00:00
volumes:
- ./element-config.json:/app/config.json:Z
2022-01-13 15:40:32 +00:00
networks:
2022-01-13 16:03:12 +00:00
- matrix
2022-01-13 15:40:32 +00:00
2022-01-13 15:26:55 +00:00
swag:
image: ghcr.io/linuxserver/swag
2022-01-13 15:40:32 +00:00
restart: unless-stopped
2022-01-13 15:26:55 +00:00
container_name: swag
cap_add:
- NET_ADMIN
environment:
- PUID=1000
- PGID=1000
- URL=arcticfoxes.net
2022-01-13 15:40:32 +00:00
- SUBDOMAINS=matrix,app,jitsi
2022-01-13 15:26:55 +00:00
- VALIDATION=http
- EMAIL=changeme@arcticfoxes.net
- ONLY_SUBDOMAINS=true
volumes:
- ./swag:/config:Z
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- 443:443
- 80:80
networks:
2022-01-13 16:03:12 +00:00
- matrix