aboutsummaryrefslogtreecommitdiff
path: root/build/docker/docker-compose.monolith.yml
diff options
context:
space:
mode:
Diffstat (limited to 'build/docker/docker-compose.monolith.yml')
-rw-r--r--build/docker/docker-compose.monolith.yml44
1 files changed, 0 insertions, 44 deletions
diff --git a/build/docker/docker-compose.monolith.yml b/build/docker/docker-compose.monolith.yml
deleted file mode 100644
index 1a8fe4ee..00000000
--- a/build/docker/docker-compose.monolith.yml
+++ /dev/null
@@ -1,44 +0,0 @@
-version: "3.4"
-services:
- postgres:
- hostname: postgres
- image: postgres:14
- restart: always
- volumes:
- - ./postgres/create_db.sh:/docker-entrypoint-initdb.d/20-create_db.sh
- # To persist your PostgreSQL databases outside of the Docker image,
- # to prevent data loss, modify the following ./path_to path:
- - ./path_to/postgresql:/var/lib/postgresql/data
- environment:
- POSTGRES_PASSWORD: itsasecret
- POSTGRES_USER: dendrite
- healthcheck:
- test: ["CMD-SHELL", "pg_isready -U dendrite"]
- interval: 5s
- timeout: 5s
- retries: 5
- networks:
- - internal
-
- monolith:
- hostname: monolith
- image: matrixdotorg/dendrite-monolith:latest
- command: [
- "--tls-cert=server.crt",
- "--tls-key=server.key"
- ]
- ports:
- - 8008:8008
- - 8448:8448
- volumes:
- - ./config:/etc/dendrite
- - ./media:/var/dendrite/media
- depends_on:
- - postgres
- networks:
- - internal
- restart: unless-stopped
-
-networks:
- internal:
- attachable: true