16 lines
230 B
YAML
16 lines
230 B
YAML
myweb:
|
|
extends:
|
|
file: common.yml
|
|
service: web
|
|
command: top
|
|
links:
|
|
- "mydb:db"
|
|
environment:
|
|
# leave FOO alone
|
|
# override BAR
|
|
BAR: "2"
|
|
# add BAZ
|
|
BAZ: "2"
|
|
mydb:
|
|
image: busybox
|
|
command: top
|