Init matrix on main server
This commit is contained in:
parent
eade62cb02
commit
2c75bd9f1b
1
server/config/matrix/.env
Normal file
1
server/config/matrix/.env
Normal file
@ -0,0 +1 @@
|
|||||||
|
DOCKER_DATA=/home/joey/data/matrix
|
45
server/config/matrix/docker-compose.yml
Normal file
45
server/config/matrix/docker-compose.yml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
hostname: postgres
|
||||||
|
image: postgres:14
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- $DOCKER_DATA/postgres/create_db.sh:/docker-entrypoint-initdb.d/20-create_db.sh
|
||||||
|
- $DOCKER_DATA/postgres/postgresql:/var/lib/postgresql/data
|
||||||
|
env_file:
|
||||||
|
- postgres.env
|
||||||
|
- postgres_secrets.env
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD-SHELL", "pg_isready -U dendrite"]
|
||||||
|
interval: 5s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 5
|
||||||
|
networks:
|
||||||
|
- matrix
|
||||||
|
|
||||||
|
monolith:
|
||||||
|
hostname: monolith
|
||||||
|
image: matrixdotorg/dendrite-monolith:latest
|
||||||
|
command: [
|
||||||
|
"--tls-cert=server.crt",
|
||||||
|
"--tls-key=server.key"
|
||||||
|
]
|
||||||
|
volumes:
|
||||||
|
- $DOCKER_DATA/dendrite/config:/etc/dendrite
|
||||||
|
- $DOCKER_DATA/dendrite/media:/var/dendrite/media
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
networks:
|
||||||
|
- matrix
|
||||||
|
- web
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
- traefik.http.routers.matrix.rule=Host(`matrix.jafner.chat`)
|
||||||
|
- traefik.http.routers.matrix.tls.certresolver=lets-encrypt
|
||||||
|
|
||||||
|
networks:
|
||||||
|
matrix:
|
||||||
|
attachable: true
|
||||||
|
web:
|
||||||
|
external: true
|
1
server/config/matrix/postgres.env
Normal file
1
server/config/matrix/postgres.env
Normal file
@ -0,0 +1 @@
|
|||||||
|
POSTGRES_USER=dendrite
|
Loading…
Reference in New Issue
Block a user