Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

fix: disable service health check for the cms #464

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,14 @@ services:
ports:
- "1337:1337"
depends_on:
postgres:
condition: service_healthy
- postgres

# The following condition seems to trigger an issue that causes cms-blog to fail to start
# See https://github.com/strapi/strapi/issues/12493
# TODO: re-enable when issue is resolved
# depends_on:
# postgres:
# condition: service_healthy

mongodb:
image: mongo:5.0
Expand Down