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
1 changed files with 3 additions and 3 deletions

View File

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