automation/deployer/roles/build/templates/synapse/docker-compose.yml.j2

37 lines
906 B
Plaintext
Raw Normal View History

2020-05-23 09:22:41 +00:00
version: '3'
# Generated by ansible for site {{ site.url }}
# On network {{ site.subnet_cidr_address }}:
# - site (synapse) at {{ site.subnet_site_ip }}
# Synapse's docker-compose: https://github.com/matrix-org/synapse/blob/master/contrib/docker/docker-compose.yml
2020-05-23 09:22:41 +00:00
services:
site:
image: matrixdotorg/synapse:{{ synapse.version }}
2020-06-01 06:21:27 +00:00
restart: unless-stopped
2020-05-23 09:22:41 +00:00
environment:
2020-06-01 06:21:27 +00:00
- SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
- UID={{ site.user_uid }}
- GID={{ site.user_gid }}
2020-05-23 09:22:41 +00:00
volumes:
- "{{ site_data_path }}:/data"
2020-05-23 09:22:41 +00:00
networks:
net:
ipv4_address: "{{ site.subnet_site_ip }}"
turn:
image: coturn/coturn:latest
restart: unless-stopped
# TODO
# network_mode == host
# give it the turnserver.conf
# Anything else?
2020-05-23 09:22:41 +00:00
networks:
net:
ipam:
driver: default
config:
- subnet: "{{ site.subnet_cidr_address }}"