Initial commit

This commit is contained in:
Ethan O'Brien
2024-09-23 09:17:49 -05:00
commit a761e26ac2
3 changed files with 78 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
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