docker-ssh-exec icon indicating copy to clipboard operation
docker-ssh-exec copied to clipboard

Secure SSH key injection for Docker builds

Results 5 docker-ssh-exec issues
Sort by recently updated
recently updated
newest added

Spinning up a key server while following the ENV var setup instructions will lead to an invalid key. Running this to startup the key server ``` docker run -e DOCKER-SSH-KEY="$(cat...

Per the Readme, the command below does not work as cat is not in the PATH (not installed most likely) ``` docker run --rm -it mdsol/docker-ssh-exec cat /root/.ssh/id_rsa Broadcasting UDP...

This is a follow-on to #7. A few notes: - There are no tests, what should I do to test this? - Should I update references to Go 1.9 to...

Elegant solution, but not working for me... missing something? I can run the tests and see that the key is being copied in, but when I try to clone, I...

So I need a docker-ssh-exec server running by: docker run -v ~/.ssh/id_rsa:/root/.ssh/id_rsa --name=keyserver -d \ mdsol/docker-ssh-exec -server And what in the Dockerfile in the client? I need: ADD pkg/docker-ssh-exec-0.5.2/docker-ssh-exec-0.5.2 /usr/local/bin/docker-ssh-exec-0.5.2...