2020-03-01 20:53:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2021-02-23 02:39:14 +00:00
|
|
|
# Wait a few second to give marker file a chance to get created
|
|
|
|
sleep 15s
|
2020-03-01 20:53:50 +00:00
|
|
|
|
|
|
|
# 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
|