From c07f55e8d428f1f1b0167958d022bfb33f519005 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 22:55:34 +0100 Subject: move smtp/Dockerfile to smtp.Dockerfile --- compose.yml | 3 ++- smtp.Dockerfile | 4 ++++ smtp/Dockerfile | 4 ---- 3 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 smtp.Dockerfile delete mode 100644 smtp/Dockerfile diff --git a/compose.yml b/compose.yml index b17e42e..539ee3f 100644 --- a/compose.yml +++ b/compose.yml @@ -20,7 +20,8 @@ services: smtp: image: git.joeac.net/joeac/joeac.net-smtp build: - context: smtp + context: . + dockerfile: smtp.Dockerfile args: LOCAL_SMTP_PORT: 2500 env_file: diff --git a/smtp.Dockerfile b/smtp.Dockerfile new file mode 100644 index 0000000..32efbb5 --- /dev/null +++ b/smtp.Dockerfile @@ -0,0 +1,4 @@ +FROM git.joeac.net/joeac/armv7/msmtp:1.8.32-alpine3.23 +ARG LOCAL_SMTP_PORT +EXPOSE $LOCAL_SMTP_PORT +COPY smtp/.msmtprc ./ diff --git a/smtp/Dockerfile b/smtp/Dockerfile deleted file mode 100644 index dc4fb6e..0000000 --- a/smtp/Dockerfile +++ /dev/null @@ -1,4 +0,0 @@ -FROM git.joeac.net/joeac/armv7/msmtp:1.8.32-alpine3.23 -ARG LOCAL_SMTP_PORT -EXPOSE $LOCAL_SMTP_PORT -COPY .msmtprc ./ -- cgit v1.2.3