Passwordless SSH daemon Docker image using GitHub public keys for auth
docker run -d --name=sshd \
-e GITHUB_USERS="akhy sabrinathebot" \
-p 2222:22 \
coralteam/sshd:baseThe startup script will automatically download akhy and sabrinathebot's public keys from GitHub and add them to $HOME/.ssh/authorized_keys. Now you can login without password using your private key.
ssh -p 2222 root@localhostbase: base image based ondebian:jessiehttp-debug: contains wget, curl, and httpie among other things- ... more to come