29 lines
595 B
YAML
29 lines
595 B
YAML
services:
|
|
matrix:
|
|
# command:
|
|
# - migrate_config
|
|
image: matrixdotorg/synapse
|
|
ports:
|
|
- "5070:8008/tcp"
|
|
environment:
|
|
SYNAPSE_SERVER_NAME: a.website.com
|
|
SYNAPSE_REPORT_STATS: no
|
|
SYNAPSE_HTTP_PORT: 8008
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/data
|
|
ooye:
|
|
container_name: ooye
|
|
build:
|
|
dockerfile: "./Dockerfile"
|
|
ports:
|
|
- 6693:6693
|
|
volumes:
|
|
- ./data-ooye:/data
|
|
- ./data:/matrix
|
|
depends_on:
|
|
matrix:
|
|
condition: service_healthy
|
|
restart: true
|
|
restart: unless-stopped
|