forked from actions/act_runner
7 lines
115 B
Bash
Executable File
7 lines
115 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! docker info &> /dev/null; then
|
|
echo "等待Docker守护进程启动……"
|
|
exit 1
|
|
fi
|