mirror of https://github.com/docker/compose.git
17 lines
257 B
YAML
17 lines
257 B
YAML
|
myweb:
|
||
|
extends:
|
||
|
file: specify-file-as-self.yml
|
||
|
service: web
|
||
|
environment:
|
||
|
- "BAR=1"
|
||
|
web:
|
||
|
extends:
|
||
|
file: specify-file-as-self.yml
|
||
|
service: otherweb
|
||
|
image: busybox
|
||
|
environment:
|
||
|
- "BAZ=3"
|
||
|
otherweb:
|
||
|
environment:
|
||
|
- "YEP=1"
|