add smtp service
This commit is contained in:
@@ -3,3 +3,5 @@ services:
|
|||||||
build: website
|
build: website
|
||||||
ports:
|
ports:
|
||||||
- "8000:4321"
|
- "8000:4321"
|
||||||
|
smtp:
|
||||||
|
build: smtp
|
||||||
|
|||||||
13
smtp/Dockerfile
Normal file
13
smtp/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
FROM alpine:3.22
|
||||||
|
|
||||||
|
WORKDIR /
|
||||||
|
RUN apk add --no-cache git autoconf automake build-base gettext gettext-dev gnutls-dev libtool make texinfo
|
||||||
|
RUN git clone https://github.com/marlam/msmtp.git --branch msmtp-1.8.32 --single-branch --depth 1
|
||||||
|
WORKDIR /msmtp
|
||||||
|
RUN autoreconf -fi && \
|
||||||
|
./configure && \
|
||||||
|
make && \
|
||||||
|
make install
|
||||||
|
ARG PORT=2500
|
||||||
|
EXPOSE $PORT
|
||||||
|
CMD ["msmtpd", "--port=$PORT"]
|
||||||
Reference in New Issue
Block a user