SSH Docker Environment Simple Docker-based environment for SSH access to a container. You can play,test,learn about networking tools. Instructions 1. Build the docker image docker build -t ssh-container . 2.Run the docker container docker run -d -p 2222:22 --name ssh-container ssh-container 3.Connect via ssh ssh sshuser@localhost -p 2222 username: sshuser password: password note:You can change the username and password inside the dockerfile