mirror of https://github.com/docker/compose.git
14 lines
227 B
YAML
14 lines
227 B
YAML
|
version: "2.0"
|
||
|
services:
|
||
|
db:
|
||
|
image: busybox:latest
|
||
|
command: top
|
||
|
web:
|
||
|
image: busybox:latest
|
||
|
command: top
|
||
|
depends_on:
|
||
|
- db
|
||
|
console:
|
||
|
image: busybox:latest
|
||
|
command: top
|