mirror of
https://github.com/docker/compose.git
synced 2025-07-31 01:24:15 +02:00
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}"
|