mirror of
https://github.com/docker/compose.git
synced 2026-06-29 20:56:07 +00:00
11 lines
192 B
YAML
11 lines
192 B
YAML
services:
|
|
foo:
|
|
image: alpine
|
|
command: "echo hello"
|
|
|
|
bar:
|
|
image: alpine
|
|
command: "echo world"
|
|
depends_on:
|
|
foo:
|
|
condition: "service_completed_successfully"
|