mirror of https://github.com/docker/compose.git
11 lines
202 B
YAML
11 lines
202 B
YAML
|
services:
|
||
|
foo:
|
||
|
image: bash
|
||
|
command: echo "foo"
|
||
|
depends_on:
|
||
|
bar:
|
||
|
required: false
|
||
|
condition: service_healthy
|
||
|
bar:
|
||
|
image: nginx:alpine
|
||
|
profiles: [not-required]
|