2020-03-01 20:53:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# Wait a few second to give marker file a change to get created
|
|
|
|
sleep 10s
|
|
|
|
|
|
|
|
# Check if
|
|
|
|
echo "Checking if docker images have been installed..."
|
|
|
|
while [ -f /tmp/installing_docker_images ]; do
|
2020-04-11 19:43:23 +00:00
|
|
|
sleep 30s
|
2020-03-01 20:53:50 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
exit 0
|