diff options
author | Josh Spicer <joshspicer@github.com> | 2023-06-28 03:12:10 +0300 |
---|---|---|
committer | Josh Spicer <joshspicer@github.com> | 2023-06-28 03:12:10 +0300 |
commit | 515ac32d819be34e70c8932b9ee315dc891ec243 (patch) | |
tree | 7fd53930cb34dbe2d1ad34ea15e120880fb3404e /test/docker-in-docker/test.sh | |
parent | 436598835c7b10b473fc749cf59668e5cf8ebbf5 (diff) |
pull an image in docker-in-docker test
Diffstat (limited to 'test/docker-in-docker/test.sh')
-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 |