Sign inSign up

surbakti/ssh-server

By surbakti

Updated about 1 year ago

just OpenSSH Server, small images based on Alpine

Image
Developer tools
0

299

surbakti/ssh-server repository overview

OpenSSH Server

just OpenSSH Server, small images

user: ssh

to build your own docker image, use these Dockerfile

FROM alpine:3
USER root
RUN apk update && apk add openssh --no-cache  && apk --purge del apk-tools
RUN addgroup ssh -g 10000 && adduser -D -h /app -G ssh -u 10000 ssh
USER ssh

build the image

docker build . -t ssh-server 

Tag summary

Content type

Image

Digest

sha256:361078271

Size

8.9 MB

Last updated

about 1 year ago

docker pull surbakti/ssh-server