2014-04-25 16:39:14 +00:00
|
|
|
# Mail-in-a-Box Dockerfile
|
|
|
|
# see https://www.docker.io
|
|
|
|
###########################
|
|
|
|
|
2014-05-02 02:29:00 +00:00
|
|
|
# To build the image:
|
2014-04-25 16:39:14 +00:00
|
|
|
# sudo docker.io build -t box .
|
2014-05-02 02:29:00 +00:00
|
|
|
|
2014-05-02 18:23:56 +00:00
|
|
|
# Run your container the first time with an interactive console so you can
|
|
|
|
# create your first mail account.
|
|
|
|
# sudo docker.io run -i -t box
|
2014-05-02 02:29:00 +00:00
|
|
|
|
2014-05-02 18:23:56 +00:00
|
|
|
# Then run it in the background and expose all of the ports so that the *host* acts as a Mail-in-a-Box:
|
2014-05-02 02:29:00 +00:00
|
|
|
# (the SSH port is only available locally, but other ports are exposed publicly and must be available
|
|
|
|
# otherwise the container won't start)
|
|
|
|
# sudo docker.io run -d -p 22 -p 25:25 -p 53:53/udp -p 443:443 -p 587:587 -p 993:993 box
|
2014-04-25 16:39:14 +00:00
|
|
|
|
|
|
|
FROM ubuntu:14.04
|
|
|
|
MAINTAINER Joshua Tauberer (http://razor.occams.info)
|
|
|
|
|
2014-05-02 02:33:14 +00:00
|
|
|
# We can't know these values ahead of time, so set them to something
|
|
|
|
# obviously local. The start.sh script will need to be run again once
|
2014-05-02 18:23:56 +00:00
|
|
|
# these values are known. We use the IP address here as a flag that
|
|
|
|
# the configuration is incomplete.
|
2014-04-25 16:39:14 +00:00
|
|
|
ENV PUBLIC_HOSTNAME box.local
|
2014-05-02 18:23:56 +00:00
|
|
|
ENV PUBLIC_IP 192.168.200.1
|
2014-04-25 16:39:14 +00:00
|
|
|
|
2014-05-02 02:39:45 +00:00
|
|
|
# Docker-specific Mail-in-a-Box configuration.
|
|
|
|
ENV DISABLE_FIREWALL 1
|
|
|
|
|
2014-04-25 16:39:14 +00:00
|
|
|
# Our install will fail if SSH is installed and allows password-based authentication.
|
2014-05-02 02:33:14 +00:00
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y openssh-server
|
2014-04-25 16:39:14 +00:00
|
|
|
RUN sed -i /etc/ssh/sshd_config -e "s/^#PasswordAuthentication yes/PasswordAuthentication no/g"
|
|
|
|
|
2014-05-01 19:51:29 +00:00
|
|
|
# Add this repo into the image so we have the configuration scripts.
|
|
|
|
ADD scripts /usr/local/mailinabox/scripts
|
2014-05-02 02:18:45 +00:00
|
|
|
ADD conf /usr/local/mailinabox/conf
|
2014-05-01 19:51:29 +00:00
|
|
|
ADD tools /usr/local/mailinabox/tools
|
|
|
|
|
|
|
|
# Start the configuration.
|
|
|
|
RUN cd /usr/local/mailinabox; scripts/start.sh
|
2014-04-25 16:39:14 +00:00
|
|
|
|
2014-05-02 02:18:45 +00:00
|
|
|
# How the instance is launched.
|
|
|
|
ADD containers/docker /usr/local/mailinabox/containers/docker
|
2014-05-01 19:51:29 +00:00
|
|
|
CMD bash /usr/local/mailinabox/containers/docker/start_services.sh
|
2014-04-25 16:39:14 +00:00
|
|
|
EXPOSE 22 25 53 443 587 993
|