Tag: security

Docker / dockeish or how to give to someone ssh securely

Docker / dockeish or how to give to someone ssh securely

Build an eg_sshd image The following Dockerfile sets up an SSHd service in a container that you can use to connect to and inspect other container’s volumes, or to get quick access to a test container. FROM ubuntu:16.04 RUN apt-get update && apt-get install -y openssh-server RUN mkdir /var/run/sshd RUN echo ‘root:screencast’ | chpasswd RUN…

Read More Read More