我试图在Dockerfile上放置一些命令,例如:
但是运行容器后,这些命令都无法运行ssh服务。
有人可以在这里帮忙吗?
答案 0 :(得分:1)
我已使用this link中的步骤在Docker容器中成功运行SSH服务。
下面是对我有用的Dockerfile:
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:THEPASSWORDYOUCREATED' | chpasswd
RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
您还可以在Docker Hub上尝试以下可在容器内启用SSH服务器的Docker映像: