fixed db lock
All checks were successful
ci/woodpecker/push/db Pipeline was successful

This commit is contained in:
Stephan D
2025-11-07 02:57:23 +01:00
parent df4af6c1e8
commit d68154f8ec
3 changed files with 10 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ services:
sendico_db1:
<<: *common-env
image: ${REGISTRY_URL}/mirror/mongo:${MONGO_TAG}@${MONGO_DIGEST}
image: ${MONGO_IMAGE}
container_name: sendico_db1
restart: unless-stopped
depends_on: { vault-agent-sendico: { condition: service_healthy } }
@@ -70,7 +70,7 @@ services:
sendico_db2:
<<: *common-env
image: ${REGISTRY_URL}/mirror/mongo:${MONGO_TAG}@${MONGO_DIGEST}
image: ${MONGO_IMAGE}
container_name: sendico_db2
restart: unless-stopped
depends_on: { vault-agent-sendico: { condition: service_healthy } }
@@ -91,7 +91,7 @@ services:
sendico_db3:
<<: *common-env
image: ${REGISTRY_URL}/mirror/mongo:${MONGO_TAG}@${MONGO_DIGEST}
image: ${MONGO_IMAGE}
container_name: sendico_db3
restart: unless-stopped
depends_on: { vault-agent-sendico: { condition: service_healthy } }
@@ -112,7 +112,7 @@ services:
mongo_setup:
<<: *common-env
image: ${REGISTRY_URL}/mirror/mongo:${MONGO_TAG}@${MONGO_DIGEST}
image: ${MONGO_IMAGE}
depends_on:
sendico_db1: { condition: service_healthy }
sendico_db2: { condition: service_healthy }