Can't ssh localhost within docker – Debian
I build docker image with ssh enabled by such dockerfile: docker build -t debian-ssh:v00 . From debian WORKDIR / RUN apt update && apt install -y openssh-server sudo RUN sed -i "s/UsePAM yes/UsePAM no/g" /etc/ssh/sshd_config RUN echo "root:123456" | chpasswd…