You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There have been reports of problems running powerstrip on CircleCI because /var/run is symlinked to /run and so when we try to mount the docker sockets using a volume - it fails because volumes don't like symlinks.
The solution is to mount /run/docker.sock rather than /var/run/docker.sock - perhaps a note about this is needed in the README.
There have been reports of problems running powerstrip on CircleCI because
/var/run
is symlinked to/run
and so when we try to mount the docker sockets using a volume - it fails because volumes don't like symlinks.The solution is to mount
/run/docker.sock
rather than/var/run/docker.sock
- perhaps a note about this is needed in the README.Example docker run with symlink accounted for:
The text was updated successfully, but these errors were encountered: