mirror of https://github.com/docker/compose.git
12 lines
192 B
YAML
12 lines
192 B
YAML
|
services:
|
||
|
foo:
|
||
|
image: alpine
|
||
|
command: "echo hello"
|
||
|
|
||
|
bar:
|
||
|
image: alpine
|
||
|
command: "echo world"
|
||
|
depends_on:
|
||
|
foo:
|
||
|
condition: "service_completed_successfully"
|