mirror of https://github.com/docker/compose.git
12 lines
189 B
YAML
12 lines
189 B
YAML
|
db:
|
||
|
image: busybox:latest
|
||
|
command: /bin/sleep 300
|
||
|
web:
|
||
|
image: busybox:latest
|
||
|
command: /bin/sleep 300
|
||
|
links:
|
||
|
- db:db
|
||
|
console:
|
||
|
image: busybox:latest
|
||
|
command: /bin/sleep 300
|