mirror of
https://github.com/docker/compose.git
synced 2026-08-04 14:47:40 +00:00
11 lines
125 B
YAML
11 lines
125 B
YAML
mydb:
|
|
build: '.'
|
|
myweb:
|
|
build: '.'
|
|
extends:
|
|
service: web
|
|
command: top
|
|
web:
|
|
build: '.'
|
|
links:
|
|
- "mydb:db"
|