mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-01-09 15:23:08 +00:00
7 lines
116 B
Plaintext
7 lines
116 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
if ! docker info &> /dev/null; then
|
||
|
|
echo "Waiting for Docker daemon to start..."
|
||
|
|
exit 1
|
||
|
|
fi
|