mirror of https://github.com/docker/compose.git
14 lines
187 B
YAML
14 lines
187 B
YAML
|
version: "2.1"
|
||
|
|
||
|
services:
|
||
|
web:
|
||
|
image: busybox
|
||
|
command: top
|
||
|
volumes:
|
||
|
- volume_with_label:/data
|
||
|
|
||
|
volumes:
|
||
|
volume_with_label:
|
||
|
labels:
|
||
|
- "label_key=label_val"
|