Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 261 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 261 Bytes

ubuntu-docker-ssh

This Docker image can be used to ssh into a remote machine to execute commands. Example:

$ eval $(ssh-agent -s)
$ ssh-add <(echo "$SSH_PRIVATE_KEY")
$ ssh -o StrictHostKeyChecking=no ${SSH_USER}@${SSH_SERVER} "<command to execute>"