mirror of https://github.com/docker/compose.git
15 lines
257 B
YAML
15 lines
257 B
YAML
|
services:
|
||
|
fail:
|
||
|
image: alpine
|
||
|
command: sleep infinity
|
||
|
healthcheck:
|
||
|
test: "false"
|
||
|
interval: 1s
|
||
|
retries: 3
|
||
|
depends:
|
||
|
image: alpine
|
||
|
command: sleep infinity
|
||
|
depends_on:
|
||
|
fail:
|
||
|
condition: service_healthy
|