2014-08-17 12:48:27 +00:00
|
|
|
# Mail-in-a-Box Dockerfile
|
|
|
|
###########################
|
|
|
|
#
|
|
|
|
# This file lets Mail-in-a-Box run inside of Docker (https://docker.io),
|
|
|
|
# a virtualization/containerization manager.
|
|
|
|
#
|
|
|
|
# Run:
|
|
|
|
# $ containers/docker/run.sh
|
|
|
|
# to build the image, launch a storage container, and launch a Mail-in-a-Box
|
|
|
|
# container.
|
|
|
|
#
|
|
|
|
###########################################
|
|
|
|
|
|
|
|
# We need a better starting image than docker's ubuntu image because that
|
|
|
|
# base image doesn't provide enough to run most Ubuntu services. See
|
|
|
|
# http://phusion.github.io/baseimage-docker/ for an explanation.
|
|
|
|
|
2015-01-24 10:29:16 +00:00
|
|
|
FROM phusion/baseimage:0.9.16
|
2014-08-17 12:48:27 +00:00
|
|
|
|
|
|
|
# Dockerfile metadata.
|
|
|
|
MAINTAINER Joshua Tauberer (http://razor.occams.info)
|
2015-02-22 10:36:10 +00:00
|
|
|
EXPOSE 25 53/udp 53/tcp 80 443 587 993 4190
|
|
|
|
VOLUME /home/user-data
|
|
|
|
|
|
|
|
CMD ["/sbin/my_init"]
|
|
|
|
|
|
|
|
# Create the user-data user, so the start script doesn't have to.
|
|
|
|
RUN useradd -m user-data
|
2014-08-17 12:48:27 +00:00
|
|
|
|
|
|
|
# Docker has a beautiful way to cache images after each step. The next few
|
|
|
|
# steps of installing system packages are very intensive, so we take care
|
|
|
|
# of them early and let docker cache the image after that, before doing
|
|
|
|
# any Mail-in-a-Box specific system configuration. That makes rebuilds
|
|
|
|
# of the image extremely fast.
|
|
|
|
|
|
|
|
# Update system packages.
|
|
|
|
RUN apt-get update
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
|
|
|
|
|
2015-02-22 10:36:10 +00:00
|
|
|
# We want to use Ubuntu's stock rsyslog rather than syslog-ng
|
|
|
|
# that the base image provides.
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y rsyslog
|
|
|
|
RUN rm -rf /etc/service/syslog-ng
|
|
|
|
|
2014-08-17 12:48:27 +00:00
|
|
|
# Install packages needed by Mail-in-a-Box.
|
|
|
|
ADD containers/docker/apt_package_list.txt /tmp/mailinabox_apt_package_list.txt
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y $(cat /tmp/mailinabox_apt_package_list.txt)
|
|
|
|
|
|
|
|
# Now add Mail-in-a-Box to the system.
|
|
|
|
ADD . /usr/local/mailinabox
|
|
|
|
|
2015-02-22 10:36:10 +00:00
|
|
|
# Cleanup
|
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|