Rob Staveley (Tom)
Results
2
comments of
Rob Staveley (Tom)
I ran into this after upgrading to `8.6.0-beta1` ``` choco upgrade openssh -params "/SSHServerFeature /KeyBasedAuthenticationFeature" -y --pre ``` I found that I had to run `uninstall-sshd.ps1` and then install sshd...
You can then use SSH_AUTH_SOCK in docker. Here's a silly illustration, checking out this repo into `/tmp`: ``` docker run --rm \ --volume $SSH_AUTH_SOCK:/tmp/ssh-auth-sock \ --volume /tmp:/data \ --env SSH_AUTH_SOCK=/tmp/ssh-auth-sock...