From c461bd4267637b487b3d503aa40c3058ac27e285 Mon Sep 17 00:00:00 2001 From: piersonjarvis <33534845+piersonjarvis@users.noreply.github.com> Date: Tue, 11 Sep 2018 22:41:39 -0700 Subject: [PATCH] Add files via upload --- Dockerfile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..dddecae --- /dev/null +++ b/Dockerfile @@ -0,0 +1,26 @@ +FROM ubuntu +EXPOSE 80 +WORKDIR / +COPY Service-check.sh . +RUN apt-get update && apt-get upgrade -y +RUN apt-get install apt-transport-https wget samba samba-common -y && \ +mkdir /media/storage && \ +chmod 0777 /media/storage + +RUN echo "deb https://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list && \ +cd /root && \ +wget http://www.webmin.com/jcameron-key.asc && \ +apt-key add jcameron-key.asc + +RUN rm /etc/apt/apt.conf.d/docker-gzip-indexes && \ +apt-get purge apt-show-versions -y && \ +rm /var/lib/apt/lists/*lz4 && \ +apt-get -o Acquire::GzipIndexes=false update -y + +RUN apt-get update && apt-get install webmin -y + +RUN sed -i 's/10000/80/g' /etc/webmin/miniserv.conf && \ +sed -i 's/ssl=1/ssl=0/g' /etc/webmin/miniserv.conf + +RUN echo root:webmin | chpasswd +CMD [ "/bin/bash","/Service-check.sh" ] \ No newline at end of file