Fix up_with_networks test

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-07-18 11:09:25 -07:00
parent 1396cdb4be
commit bb00352c34

View File

@ -2,17 +2,17 @@ version: "2"
services:
web:
image: busybox
image: alpine:3.7
command: top
networks: ["front"]
app:
image: busybox
image: alpine:3.7
command: top
networks: ["front", "back"]
links:
- "db:database"
db:
image: busybox
image: alpine:3.7
command: top
networks: ["back"]