Ver Fonte

Fix up_with_networks test

Signed-off-by: Joffrey F <[email protected]>
Joffrey F há 7 anos atrás
pai
commit
bb00352c34
1 ficheiros alterados com 3 adições e 3 exclusões
  1. 3 3
      tests/fixtures/networks/docker-compose.yml

+ 3 - 3
tests/fixtures/networks/docker-compose.yml

@@ -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"]