Files
exim-docker/Dockerfile
Wolfgang Hottgenroth 9f65b7690e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
alpine approach
2024-12-11 10:55:34 +01:00

22 lines
387 B
Docker

FROM alpine:3.21.0
LABEL Maintainer="Wolfgang Hottgenroth <woho@hottis.de>"
LABEL ImageName=""
# domain to be used in sender address of sent mails
ENV LOCALMAILNAME=""
# smarthost to send mail to
ENV SMARTHOST=""
# ip addresses or networks to allow for relaying, separate multiple ones by semicolon
ENV RELAYNETS=""
RUN apk add --no-cache exim bash
WORKDIR /etc/exim
EXPOSE 25