mirror of
https://github.com/docker/compose.git
synced 2025-08-15 22:58:12 +02:00
18 lines
244 B
YAML
18 lines
244 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"
|
|
net: bridge
|
|
mydb:
|
|
image: busybox
|
|
command: top
|