mirror of https://github.com/docker/compose.git
Fix up_with_networks test
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
1396cdb4be
commit
bb00352c34
|
@ -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"]
|
||||
|
||||
|
|
Loading…
Reference in New Issue