Я пытаюсь создать образ и запустить контейнер как ssh-сервер. Я хочу иметь возможность ssh этого контейнера (remote_host) из другого контейнера (jenkins / jenkins)
Я использую виртуальную машину с Centos.
Я использую этот файл Docker. Я запускаю его с моей виртуальной машины (также Centos)
FROM centos
RUN yum -y install openssh-server openssh-clients
RUN useradd -ms /bin/bash remote_user && \
echo 'remote_user:12345' | chpasswd && \
mkdir /home/remote_user/.ssh && \
chmod 700 /home/remote_user/.ssh
COPY remote-key.pub /home/remote_user/.ssh/authorized_keys
RUN chown remote_user:remote_user -R /home/remote_user/.ssh && \
chmod 600 /home/remote_user/.ssh/authorized_keys
EXPOSE 22
RUN /usr/bin/ssh-keygen -A
CMD ["/usr/sbin/sshd", "-D"]
Мой файл создания докера
---
networks:
net: ~
services:
jenkins:
container_name: jenkins
image: jenkins/jenkins
networks:
- net
ports:
- "8080:8080"
volumes:
- "$PWD/jenkins_home:/var/jenkins_home"
remote_host:
container_name: remote-host
image: remote-host
build:
context: centos7
networks:
- net
version: "3"
Я запускаю docker-compose build
с моей машины
Building remote_host
Step 1/8 : FROM centos
---> 0f3e07c0138f
Step 2/8 : RUN yum -y install openssh-server openssh-clients
---> Using cache
---> 277411f7cc41
Step 3/8 : RUN useradd -ms /bin/bash remote_user && echo 'remote_user:12345' | chpasswd && mkdir /home/remote_user/.ssh && chmod 700 /home/remote_user/.ssh
---> Using cache
---> c42b15de9da7
Step 4/8 : COPY remote-key.pub /home/remote_user/.ssh/authorized_keys
---> Using cache
---> f205521e83cb
Step 5/8 : RUN chown remote_user:remote_user -R /home/remote_user/.ssh && chmod 600 /home/remote_user/.ssh/authorized_keys
---> Using cache
---> a7bb438b87ed
Step 6/8 : EXPOSE 22
---> Using cache
---> 7f28ef8e4ec9
Step 7/8 : RUN /usr/bin/ssh-keygen -A
---> Using cache
---> a4fae9730627
Step 8/8 : CMD ["/usr/sbin/sshd", "-D"]
---> Using cache
---> 3fe69c9789a6
Successfully built 3fe69c9789a6
Successfully tagged remote-host:latest
Затем я запускаю docker-compose up -d
Docker PS дает мне:
0f9987444fcf remote-host "/usr/sbin/sshd -D" 28 minutes ago Up 16 minutes 22/tcp remote-host
4c9ba830f419 jenkins/jenkins "/sbin/tini -- /usr/…" 7 hours ago Up 7 hours 0.0.0.0:8080->8080/tcp, 50000/tcp jenkins
Я SSH мой первый контейнер:
docker exec -it jenkins bash
Тогда Когда я пытаюсь SSHвторой контейнер из первого
ssh remote_user@remote_host
Я получил эту ошибку
Are you sure you want to continue connecting (yes/no)?
remote_user@remote_host's password:12345
"System is booting up. Unprivileged users are not permitted to log in yet. Please come back later. For technical details, see pam_nologin(8)."
Authentication failed.