mirror of https://github.com/docker/compose.git
18 lines
219 B
YAML
18 lines
219 B
YAML
|
version: "2.1"
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
image: busybox
|
||
|
command: top
|
||
|
volumes:
|
||
|
- foo:/var/lib/
|
||
|
- bar:/etc/
|
||
|
|
||
|
volumes:
|
||
|
foo:
|
||
|
external: true
|
||
|
name: some_foo
|
||
|
bar:
|
||
|
external:
|
||
|
name: some_bar
|