fix: healthchecks
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Philipp Rothmann 2023-06-12 14:14:43 +02:00
parent 2a45273541
commit 2445d9f33a
1 changed files with 13 additions and 3 deletions

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: "matrixdotorg/synapse:v1.84.1"
image: "matrixdotorg/synapse:v1.81.0"
volumes:
- "data:/data"
depends_on:
@ -61,7 +61,13 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`)"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=3.8.0+v1.84.1"
- "coop-cloud.${STACK_NAME}.version=3.6.0+v1.81.0"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8008/health"]
interval: 30s
timeout: 10s
retries: 10
start_period: 1m
db:
image: postgres:13-alpine
@ -77,7 +83,11 @@ services:
networks:
- internal
healthcheck:
test: ["CMD", "pg_isready", "-U", "$POSTGRES_USER" ]
test: ["CMD", "pg_isready", "-U", "synapse"]
interval: 30s
timeout: 10s
retries: 10
start_period: 1m
volumes:
- postgres:/var/lib/postgresql/data
deploy: