Docker Compose

Installation
SKILL.md

depends_on Ready Condition

  • depends_on: alone only waits for container start—service likely not ready yet
  • Add healthcheck + condition for actual readiness:
depends_on:
  db:
    condition: service_healthy
  • Without healthcheck defined on target service, service_healthy fails

Healthcheck start_period

Installs
Repository
clawic/skills
GitHub Stars
16
First Seen
Docker Compose — clawic/skills