Using ssh-agent with docker on macOS
Since version 2.2.0.0, docker for macOS allows users to access the host’s SSH agent inside containers. Here’s an example command that let’s you do it: docker run –rm -it \ -v /run/host-services/ssh-auth.sock:/ssh-agent \ -e SSH_AUTH_SOCK=”/ssh-agent” \ my_image Note that you have to mount the specific path (/run/host-services/ssh-auth.sock) instead of the path contained in $SSH_AUTH_SOCK environment … Read more