This image(s) is part of the Docksal image library.
The exposed ssh-agent socket will be accessible to all users (not only root) in any container.
This is achieved by exposing a proxy socket (/.ssh-agent/proxy-socket
) via socat.
docker run -d --name=ssh-agent docksal/ssh-agent
Replace ~/.ssh
with the path to your keys and id_rsa
with the key name.
If the key has a passphrase, you will be asked to enter it.
docker run --rm --volumes-from=ssh-agent -v ~/.ssh:/root/.ssh -it ssh-agent ssh-add /root/.ssh/id_rsa
Mount the ssh-agent socket and set the SSH_AUTH_SOCK
variable in other containers.
Docker
docker run --rm --volumes-from=ssh-agent -e SSH_AUTH_SOCK=/.ssh-agent/proxy-socket-it <image> ssh-add -l
Docker Compose
...
volumes_from:
- ssh-agent
...
environment:
- SSH_AUTH_SOCK /.ssh-agent/proxy-socket
...
docker run --rm --volumes-from=ssh-agent -it docksal/ssh-agent ssh-add -D