Sfoglia il codice sorgente

Check "docker version" from a sibling container

Mike Dillon 9 anni fa
parent
commit
30e565f0ed
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      test/lib/docker_helpers.bash

+ 1 - 1
test/lib/docker_helpers.bash

@@ -56,5 +56,5 @@ function docker_tcp {
 		--expose 2375 \
 		-v /var/run/docker.sock:/var/run/docker.sock \
 		rancher/socat-docker
-	docker -H tcp://$(docker_ip $container_name):2375 version
+	docker run --rm --link "$container_name:docker" docker version
 }