Dockerized SSH service, built on top of official Ubuntu images.
- rastasheep/ubuntu-sshd:14.04 (trusty)
Base:
Image specific:
Config:
PermitRootLogin yes
UsePAM no
- exposed port 22
- default command:
/usr/sbin/sshd -D
- root password:
root
docker build -t e421083458/ubuntu14.04_sshd .
docker run -d -p 3022:22 --name test_sshd_3022 ubuntu14.04_sshd
//optional --restart=always
ssh root@127.0.0.1 -p 3022
If you run into any problems with this image, please check (and potentially file new) issues on the rastasheep/ubuntu-sshd repo, which is the source for this image.