mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 09:29:15 +00:00
14 lines
237 B
Bash
Executable File
14 lines
237 B
Bash
Executable File
#!/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
|
|
sleep 10s
|
|
done
|
|
|
|
exit 0 |