Sha256: 6d88e155ffc90a2f1efaf9ada5568ec5c2a062948c23cdefb6cedf6b88d432c0
Contents?: true
Size: 375 Bytes
Versions: 67
Compression:
Stored size: 375 Bytes
Contents
# This is an example of Dockerfile that can serve as an image for testing Docker handling in the Deployer FROM debian:stretch RUN apt-get update && apt-get install -y openssh-server RUN mkdir /var/run/sshd RUN echo 'root:root_pwd' | chpasswd RUN sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config EXPOSE 22 CMD ["/usr/sbin/sshd", "-D"]
Version data entries
67 entries across 67 versions & 1 rubygems