matrix-docker-compose/ansible/roles/synapse-admin/files/basedir/docker-compose.yaml
Nico Schottelius 58fada76d1 in between commit
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2023-12-27 11:06:30 +01:00

21 lines
498 B
YAML

version: '3'
services:
synapse-admin:
image: awesometechnologies/synapse-admin:${SYNAPSE_ADMIN_VERSION}
volumes:
- /mnt/synapse_data:/data
- ./config:/config
restart: unless-stopped
container_name: synapse-admin
nginx:
image: nginx:${NGINX_VERSION}
ports:
- "80:80/tcp"
- "443:443/tcp"
volumes:
- ./nginx:/etc/nginx/conf.d
- /ssl:/ssl
- /mnt/logs/nginx:/var/log/nginx/
restart: unless-stopped
container_name: nginx