Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 426 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 426 Bytes

SSH Container

This image is an example of how to install and setup SSH for your Docker containers. It is as simple as:

  1. Installing openssh-server
  2. Adding the ssh user. In this example, we use ubuntu, but you can customize this
  3. Launching a cluster with your SSH Public Key
  4. Run sudo service ssh start to start the SSH server
  5. On your machine, run ssh ubuntu@<HOSTNAME> -p 2200 -i <private_key_file_path>