Merge branch 'master' of https://github.com/dbdd4us/compose into dbdd4us-master

This commit is contained in:
Joffrey F 2016-10-17 14:09:09 -07:00
commit 14716bc2da
9 changed files with 217 additions and 10 deletions

View file

@ -0,0 +1,13 @@
version: "2.1"
services:
web:
image: busybox
command: top
networks:
- network_with_label
networks:
network_with_label:
labels:
- "label_key=label_val"

13
tests/fixtures/volumes/volume-label.yml vendored Normal file
View file

@ -0,0 +1,13 @@
version: "2.1"
services:
web:
image: busybox
command: top
volumes:
- volume_with_label:/data
volumes:
volume_with_label:
labels:
- "label_key=label_val"