Merge "AIAP - check if docker server is ready"

This commit is contained in:
Zuul 2021-09-22 01:18:25 +00:00 committed by Gerrit Code Review
commit eb9ac97ce2
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function check_docker_readiness() {
end=$(($(date +%s) + $timeout))
echo "Waiting $timeout seconds for docker to be ready."
while true; do
if ( docker version | grep 'Version' ); then
if ( docker version | grep 'containerd' ); then
echo "docker is now ready"
break
else