mirror of
https://github.com/docker/compose.git
synced 2025-08-18 16:18:16 +02:00
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"
|