first push

This commit is contained in:
2020-11-28 02:00:51 +01:00
parent f69c1dc098
commit 3a05927a60
9 changed files with 246 additions and 0 deletions

7
sshd/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM ubuntu
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
COPY sshd_config /etc/ssh/sshd_config
COPY docker-entrypoint.sh /
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]