Sign inSign up

dhrp/sshd

By dhrp

Updated almost 11 years ago

SSH Daemon created in the ssh daemon documentation example

Image
6

5.7K

dhrp/sshd repository overview

Here is the dockerfile used to build this image:

# sshd
#
# VERSION               0.0.1

FROM     ubuntu 
MAINTAINER Thatcher R. Peskens "[email protected]"

# make sure the package repository is up to date
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update

RUN apt-get install -y openssh-server
RUN mkdir /var/run/sshd 
RUN echo 'root:screencast' |chpasswd

EXPOSE 22
CMD    /usr/sbin/sshd -D

Tag summary

Content type

Image

Digest

sha256:8c093ae1b

Size

132.1 MB

Last updated

almost 11 years ago

docker pull dhrp/sshd