Compare commits
19
Commits
01_admin
...
02_messaging
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49e16ac93f | ||
|
|
de1ba81f03 | ||
|
|
42ccc76650 | ||
|
|
f1d2b4b252 | ||
|
|
7c5c0f0207 | ||
|
|
c2f2963fdd | ||
|
|
55cfa6902c | ||
|
|
9531ab3f71 | ||
|
|
fed12570e9 | ||
|
|
2468d3a791 | ||
|
|
21ca2e487a | ||
|
|
b4f424ee1b | ||
|
|
59ef145673 | ||
|
|
79f6d07ce5 | ||
|
|
ae1f7d3ecb | ||
|
|
ee0451a9a9 | ||
|
|
386b551347 | ||
|
|
8e101cd112 | ||
|
|
71bce0931e |
@@ -0,0 +1,48 @@
|
|||||||
|
services:
|
||||||
|
nginx:
|
||||||
|
image: "nginx:1.22.0"
|
||||||
|
container_name: matrix-nginx
|
||||||
|
restart: "always"
|
||||||
|
networks:
|
||||||
|
- hydra-local
|
||||||
|
volumes:
|
||||||
|
- /opt/02_messaging/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf:ro
|
||||||
|
|
||||||
|
synapse:
|
||||||
|
image: docker.io/matrixdotorg/synapse:latest
|
||||||
|
container_name: matrix-synapse
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- hydra-local
|
||||||
|
environment:
|
||||||
|
- SYNAPSE_CONFIG_PATH=/data/homeserver.yaml
|
||||||
|
volumes:
|
||||||
|
- /opt/02_messaging/synapse:/data
|
||||||
|
depends_on:
|
||||||
|
- synapse_db
|
||||||
|
|
||||||
|
synapse_db:
|
||||||
|
image: docker.io/postgres:14-alpine
|
||||||
|
restart: unless-stopped
|
||||||
|
container_name: matrix-synapse-db
|
||||||
|
networks:
|
||||||
|
- hydra-local
|
||||||
|
environment:
|
||||||
|
- POSTGRES_USER=synapse
|
||||||
|
- POSTGRES_PASSWORD=aComplexPassphraseNobodyCanGuess
|
||||||
|
- POSTGRES_INITDB_ARGS=--encoding=UTF-8 --lc-collate=C --lc-ctype=C
|
||||||
|
volumes:
|
||||||
|
- /opt/02_messaging/postgres:/var/lib/postgresql/data
|
||||||
|
|
||||||
|
mautrix-whatsapp:
|
||||||
|
container_name: mautrix-whatsapp
|
||||||
|
image: dock.mau.dev/mautrix/whatsapp:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- hydra-local
|
||||||
|
volumes:
|
||||||
|
- /opt/02_messaging/bridges/whatsapp:/data
|
||||||
|
|
||||||
|
networks:
|
||||||
|
hydra-local:
|
||||||
|
external: true
|
||||||
Reference in New Issue
Block a user