mirror of https://github.com/docker/compose.git
11 lines
155 B
YAML
11 lines
155 B
YAML
|
services:
|
||
|
web:
|
||
|
image: nginx:alpine
|
||
|
depends_on:
|
||
|
db:
|
||
|
condition: service_healthy
|
||
|
db:
|
||
|
image: alpine
|
||
|
command: sh -c "exit 1"
|
||
|
|