Add matrix
This commit is contained in:
parent
29f97e9d45
commit
ff7537dd26
8 changed files with 1263 additions and 0 deletions
45
matrix/docker-compose.yaml
Normal file
45
matrix/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
version: "3.7"
|
||||
|
||||
services:
|
||||
synapse:
|
||||
container_name: synapse
|
||||
image: docker.io/matrixdotorg/synapse:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
||||
volumes:
|
||||
- ./synapse:/data
|
||||
depends_on:
|
||||
- synapse_postgres
|
||||
ports:
|
||||
- 8008:8008/tcp
|
||||
|
||||
synapse_postgres:
|
||||
container_name: synapse-postgres
|
||||
image: docker.io/postgres:12-alpine
|
||||
env_file:
|
||||
- ./postgresql/.env
|
||||
volumes:
|
||||
- ./postgresql/schemas:/var/lib/postgresql/data
|
||||
|
||||
mautrix-discord:
|
||||
container_name: mautrix-discord
|
||||
image: dock.mau.dev/mautrix/discord:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./mautrix-discord/:/data
|
||||
|
||||
mautrix-meta:
|
||||
container_name: mautrix-meta
|
||||
image: dock.mau.dev/mautrix/meta:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./mautrix-meta/:/data
|
||||
|
||||
mautrix-whatsapp:
|
||||
container_name: mautrix-whatsapp
|
||||
image: dock.mau.dev/mautrix/whatsapp:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./mautrix-whatsapp/:/data
|
||||
|
||||
Reference in a new issue