diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/docker-in-docker/test.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/docker-in-docker/test.sh b/test/docker-in-docker/test.sh index 1eebfd2..a04de66 100755 --- a/test/docker-in-docker/test.sh +++ b/test/docker-in-docker/test.sh @@ -12,6 +12,8 @@ check "log-exists" bash -c "ls /tmp/dockerd.log" check "log-for-completion" bash -c "cat /tmp/dockerd.log | grep 'Daemon has completed initialization'" check "log-contents" bash -c "cat /tmp/dockerd.log | grep 'API listen on /var/run/docker.sock'" check "docker-ps" bash -c "docker ps" +check "run hello-world" bash -c "docker run hello-world" +check "validate hello-world image exists" bash -c "docker images | grep hello-world" # Report result reportResults
\ No newline at end of file |