GithubHelp home page GithubHelp logo

hermsi1337 / docker-sshd Goto Github PK

View Code? Open in Web Editor NEW
37.0 37.0 31.0 40 KB

Dockerize your OpenSSH-server with rsync and bash installed, upon a customizable alpine-image

Home Page: https://hub.docker.com/r/hermsi/alpine-sshd/

License: MIT License

Shell 88.44% Dockerfile 11.56%

docker-sshd's People

Contributors

hermsi1337 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

docker-sshd's Issues

[FEATURE] Login with SSH-Key

It would be a nice feature if it is possible to connect to the container via ssh-keypair instead of password.

Nevertheless, both options - password and keypair - should be possible.
But if one is active, the other should be inactive though.

PR's are very welcome. (:

Error creating additional user with existing GID

Hi,

When specifying an additional user with UID:GID = 999:999, there is an error creating the new user because the group 999 exists:

[INFO] Applying configuration for additional users ...
[INFO]     desired shell is /bin/bash
[INFO]     'redmine:999:999'
adduser: unknown group redmine

Command executed:

docker run -it --rm --publish=1337:22 --env SSH_USERS="redmine:999:999" --name sshd hermsi/alpine-sshd

I think the error is here:

getent passwd "${USER_NAME}" &>/dev/null || adduser -s "${USER_LOGIN_SHELL}" -D -u "${USER_UID}" -G "${USER_NAME}" "${USER_NAME}"

The created user should used the GID provided in SSH_USERS instead of the username.

Fix:

getent passwd "${USER_NAME}" &>/dev/null || adduser -s "${USER_LOGIN_SHELL}" -D -u "${USER_UID}" -G "${USER_GID}" "${USER_NAME}" 

Thanks for your feedback.
Jean-Philippe.

Changing fingerprint between container lifetimes

I recently started using this docker container. Everything works perfectly fine, until I restart the docker container. Due to the nature of docker the fingerprint is regenerated and I get warnings that the fingerprint does not match. This is completely correct, but maybe not the desired behaviour.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.