when executing ./act_runner daemon I get the error:
INFO[2023-08-02T22:17:42+02:00] Starting runner daemon
Error: daemon Docker Engine socket not found and docker_host config was invalid
how can I solve this?
when executing ./act_runner daemon I get the error:
INFO[2023-08-02T22:17:42+02:00] Starting runner daemon
Error: daemon Docker Engine socket not found and docker_host config was invalid
how can I solve this?
Hi @ware32 ,
I received the same error because Iām running the act runner without Docker. After some time reading the doco, I encountered the following at Act Runner | Gitea Documentation
ubuntu-22.04:host
or just ubuntu-22.04
, the :host
is optional. However, we suggest you to use a special name like linux_amd64:host
or windows:host
to avoid misusing it.*My fix involved:
labels:
- "linux_amd64:host"
./act_runner daemon --config config.yaml
Good luck!
Regards,
Kevin
This was exactly my problem. I read and re-read the documentation but did not understand that.