DEV Community

r_tanaka
r_tanaka

Posted on

How to active nektos/act with Rancher Desktop on MacOS

act supports running github actions locally

https://github.com/nektos/act

How to active it with Rancher Desktop on MacOS

requires::

  • act was installed
  • Rancher Desktop was installed

Fixed the docker.sock issue

fist after running act you will see below

$ act
Enter fullscreen mode Exit fullscreen mode

daemon Docker Engine socket not found and containerDaemonSocket option was not set

you can fix by below

sudo ln -s ~/.rd/docker.sock /var/run/docker.sock
Enter fullscreen mode Exit fullscreen mode

Top comments (0)