mirror of https://github.com/docker/compose.git
11 lines
137 B
YAML
11 lines
137 B
YAML
|
|
||
|
web:
|
||
|
image: busybox:latest
|
||
|
command: "sleep 200"
|
||
|
links:
|
||
|
- db
|
||
|
|
||
|
db:
|
||
|
image: busybox:latest
|
||
|
command: "sleep 200"
|