mirror of
https://gitea.com/gitea/act_runner.git
synced 2024-11-10 04:37:22 +01:00
10 lines
162 B
Bash
10 lines
162 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# wait for docker daemon
|
||
|
while ! nc -z localhost 2376 </dev/null; do
|
||
|
echo 'waiting for docker daemon...'
|
||
|
sleep 5
|
||
|
done
|
||
|
|
||
|
. /opt/act/run.sh
|