diff options
| -rw-r--r-- | compose.yml | 3 | ||||
| -rw-r--r-- | smtp.Dockerfile (renamed from smtp/Dockerfile) | 2 |
2 files changed, 3 insertions, 2 deletions
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 index dc4fb6e..32efbb5 100644 --- a/smtp/Dockerfile +++ b/smtp.Dockerfile @@ -1,4 +1,4 @@ FROM git.joeac.net/joeac/armv7/msmtp:1.8.32-alpine3.23 ARG LOCAL_SMTP_PORT EXPOSE $LOCAL_SMTP_PORT -COPY .msmtprc ./ +COPY smtp/.msmtprc ./ |
