Files
docker-docs/tests/fixtures/networks/docker-compose.yml
Aanand Prasad aeef61fcd8 Make 'version' a string
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
2016-02-02 13:58:34 +00:00

22 lines
298 B
YAML

version: "2"
services:
web:
image: busybox
command: top
networks: ["front"]
app:
image: busybox
command: top
networks: ["front", "back"]
links:
- "db:database"
db:
image: busybox
command: top
networks: ["back"]
networks:
front: {}
back: {}