mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-26 03:52:50 +02:00
11 lines
196 B
Docker
11 lines
196 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update postfix postfix-sqlite rsyslog && rm -rf /var/cache/apk/*
|
|
|
|
COPY conf /etc/postfix
|
|
COPY rsyslog.conf /etc/rsyslog.conf
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|