mirror of https://github.com/docker/compose.git
18 lines
266 B
YAML
18 lines
266 B
YAML
|
web:
|
||
|
# unbracketed name
|
||
|
image: $IMAGE
|
||
|
|
||
|
# array element
|
||
|
ports:
|
||
|
- "${HOST_PORT}:8000"
|
||
|
|
||
|
# dictionary item value
|
||
|
labels:
|
||
|
mylabel: "${LABEL_VALUE}"
|
||
|
|
||
|
# unset value
|
||
|
hostname: "host-${UNSET_VALUE}"
|
||
|
|
||
|
# escaped interpolation
|
||
|
command: "$${ESCAPED}"
|