From f713d9232fcda624836097c9dca13485d669de99 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Fri, 25 Apr 2014 12:39:14 -0400 Subject: [PATCH] initial Dockerfile --- containers/docker/Dockerfile | 34 +++++++++++++++++++++++++++++ containers/docker/start_services.sh | 12 ++++++++++ 2 files changed, 46 insertions(+) create mode 100644 containers/docker/Dockerfile create mode 100644 containers/docker/start_services.sh diff --git a/containers/docker/Dockerfile b/containers/docker/Dockerfile new file mode 100644 index 00000000..80cb2a4c --- /dev/null +++ b/containers/docker/Dockerfile @@ -0,0 +1,34 @@ +# Mail-in-a-Box Dockerfile +# see https://www.docker.io +########################### + +# Change to this directory and then +# sudo docker.io build -t box . +# sudo docker.io run -i -t box + +FROM ubuntu:14.04 +MAINTAINER Joshua Tauberer (http://razor.occams.info) + +ENV PUBLIC_HOSTNAME box.local + +# The PUBLIC_IP is only used for serving DNS, which means it is only +# useful if we set it to the host machine's IP address and have the +# host forward its port 53 (TCP/UDP) traffic to the docker container. +# Since we can't get the host's IP address here, we'll set this to +# a dummy value. +ENV PUBLIC_IP 127.0.123.123 + +# Our install will fail if SSH is installed and allows password-based authentication. +RUN apt-get install -q -y openssh-server +RUN sed -i /etc/ssh/sshd_config -e "s/^#PasswordAuthentication yes/PasswordAuthentication no/g" +RUN service ssh restart + +# Start our setup. +RUN apt-get install -q -y git +RUN git clone https://github.com/joshdata/mailinabox +RUN cd mailinabox; scripts/start.sh + +# Launch configuration. +ADD start_services.sh /usr/local/bin/start_services.sh +CMD bash /usr/local/bin/start_services.sh +EXPOSE 22 25 53 443 587 993 diff --git a/containers/docker/start_services.sh b/containers/docker/start_services.sh new file mode 100644 index 00000000..137b9c8e --- /dev/null +++ b/containers/docker/start_services.sh @@ -0,0 +1,12 @@ +#!/bin/bash +echo "Starting Mail-in-a-Box services..." + +service nsd start +service postfix start +dovecot # it's integration with Upstart doesn't work in docker +service opendkim start +service nginx start +service php-fastcgi start + +echo "Your Mail-in-a-Box is running." +bash