Removing health dependency for now.

This commit is contained in:
2024-12-16 16:31:14 -05:00
parent 61fef224dc
commit a3d5c6e308
+4 -4
View File
@@ -7025,9 +7025,9 @@ services:
container_name: zitadel
image: ghcr.io/zitadel/zitadel:latest
command: 'start-from-init --masterkeyFromEnv --tlsMode external'
depends_on:
zitadel-pg-db:
condition: 'service_healthy'
# depends_on:
# zitadel-pg-db:
# condition: 'service_healthy'
environment:
ZITADEL_DATABASE_POSTGRES_HOST: zitadel-pg-db
ZITADEL_DATABASE_POSTGRES_PORT: 5432
@@ -7063,7 +7063,7 @@ services:
expose:
- 5432
healthcheck:
test: ["CMD-SHELL", "pg_isready", "-d", "zitadel", "-U", "postgres"]
test: ["CMD-SHELL", "pg_isready", "-d", "zitadel", "-U", "zitadel"]
interval: '10s'
timeout: '30s'
retries: 5