|
|
|
|
|
by verst
3058 days ago
|
|
So why not build your own version with a SSH daemon if you really need it? I don't think most people need the SSH daemon in their container image. Your Dockerfile could be something like this: FROM ubuntu:bionic
RUN sudo apt-get install openssh-server -y && sudo service ssh restart
These are definitely not the complete steps for setting up SSHd but you get the idea. |
|