2015-04-20 07:07:23 +02:00
|
|
|
#Dockerfile for a Postfix email relay service
|
|
|
|
FROM centos:latest
|
|
|
|
MAINTAINER Juan Luis Baptiste juan.baptiste@gmail.com
|
|
|
|
|
|
|
|
RUN yum install -y epel-release && yum update -y && \
|
2018-05-09 07:02:59 +02:00
|
|
|
yum install -y cyrus-sasl cyrus-sasl-plain cyrus-sasl-md5 mailx \
|
|
|
|
perl supervisor postfix rsyslog
|
2015-04-20 07:07:23 +02:00
|
|
|
RUN sed -i -e "s/^nodaemon=false/nodaemon=true/" /etc/supervisord.conf
|
|
|
|
RUN sed -i -e 's/inet_interfaces = localhost/inet_interfaces = all/g' /etc/postfix/main.cf
|
2018-05-09 07:02:59 +02:00
|
|
|
|
|
|
|
COPY etc/*.conf /etc/
|
|
|
|
COPY etc/rsyslog.d/* /etc/rsyslog.d
|
2015-04-20 07:07:23 +02:00
|
|
|
COPY run.sh /
|
|
|
|
RUN chmod +x /run.sh
|
2018-05-09 07:02:59 +02:00
|
|
|
COPY etc/supervisord.d/*.ini /etc/supervisord.d/
|
2015-05-12 09:20:38 +02:00
|
|
|
RUN newaliases
|
2015-04-20 07:07:23 +02:00
|
|
|
|
|
|
|
EXPOSE 25
|
|
|
|
#ENTRYPOINT ["/run.sh"]
|
|
|
|
CMD ["/run.sh"]
|