diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-22 22:55:34 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-22 22:55:34 +0100 |
| commit | c07f55e8d428f1f1b0167958d022bfb33f519005 (patch) | |
| tree | 8b33a99361db55d50a54edad06ff6619907c09d5 | |
| parent | d3e832f064abcf5ab6fe5b66e6affe9dafd62e76 (diff) | |
move smtp/Dockerfile to smtp.Dockerfile
| -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 ./ |
