mirror of
https://github.com/docker/compose.git
synced 2026-09-21 21:14:26 +00:00
10 lines
155 B
YAML
10 lines
155 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
db:
|
|
image: alpine
|
|
command: sh -c "exit 1"
|
|
|