docker-ssh icon indicating copy to clipboard operation
docker-ssh copied to clipboard

SSH Server for Docker containers ~ Because every container should be accessible

Results 30 docker-ssh issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to login with the following command which should open an interactive terminal but it just causes the terminal to completely lock up ssh -p2223 -t localhost 'cd...

Hi, This works great with ubuntu but I can't get it to work with Centos or Alpine images. E.g. https://hub.docker.com/_/alpine/ https://hub.docker.com/_/centos/ Any suggestions? I'm thinking for Centos probably a firewall...

Will be nice to run this container once and be able to login to any other container. Container could be chosed by login (`ssh [email protected]`) and also will be nice...

I try to put in prmpt color in the bashrc flke but it is not loaded automatically i.e. I have to call `source ~/.bashrc` manually.

Hi, As per man 8 sshd, we can put # commented lines or empty lines in a standard authorized_keys file : > AUTHORIZED_KEYS FILE FORMAT > AuthorizedKeysFile specifies the files...

Hi :-) Thanks for this useful library. I would like to ask why the container parameter is deprecated? It seems to make more sense to use "container" especially when using...

Hi, First, thanks for this amazing tool. Does publicKey authentication work for Web Terminal also? If yes, where/how will it pick up the client ssh key? I tried to set...

I have created ssh tunnel: `ssh -v -L 1234:localhost:1234 -R 26162:localhost:26162 -p 2222 localhost -o "UserKnownHostsFile /dev/null"` When trying to use this tunnel ``` debug1: Connection to port 1234 forwarding...

I have not looked into how this code works, as I don't personally use Docker for anything at the moment, but a friend mentioned this repository to me, and when...

Hi The connection closes immediately command invoked: docker run --rm -p 2222:22 -v /var/run/docker.sock:/var/run/docker.sock -v ./authorized_keys:/authorized_keys --name sshd-python-docker -e FILTERS={\"name\":[\"^/python-docker$\"]} -e AUTH_MECHANISM=publicKey -e AUTHORIZED_KEYS=/authorized_keys jeroenpeeters/docker-ssh I have tested NoAuth, multiUser,...