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:
|
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"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue