From a7a5f76cb8e055e7b7708d0f0ccca9b6ed7c5c77 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 7 May 2026 12:14:42 +0100 Subject: [PATCH 1/2] renames images --- compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compose.yml b/compose.yml index dd0d93c..e192b2f 100644 --- a/compose.yml +++ b/compose.yml @@ -1,6 +1,6 @@ services: capsule: - image: git.joeac.net/joeac/capsule + image: git.joeac.net/joeac/joeac.net-capsule build: context: . dockerfile: capsule.Dockerfile @@ -8,7 +8,7 @@ services: - "1965:1965" website: - image: git.joeac.net/joeac/website + image: git.joeac.net/joeac/joeac.net-website build: context: . dockerfile: website.Dockerfile @@ -22,7 +22,7 @@ services: - "8000:4321" smtp: - image: git.joeac.net/joeac/smtp + image: git.joeac.net/joeac/joeac.net-smtp build: context: smtp args: From 4c8db72ec1a251d2103581f65ac63756ed8fff4e Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 7 May 2026 12:15:00 +0100 Subject: [PATCH 2/2] removes commented-out bits from website.Dockerfile --- website.Dockerfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/website.Dockerfile b/website.Dockerfile index fd55f54..7ace22f 100644 --- a/website.Dockerfile +++ b/website.Dockerfile @@ -24,15 +24,6 @@ EXPOSE 4321 ARG LOCAL_SMTP_HOST ARG LOCAL_SMTP_PASSWORD ARG LOCAL_SMTP_PORT -#ENV LOCAL_SMTP_ENVELOPE_FROM=$LOCAL_SMTP_ENVELOPE_FROM \ -#ENV LOCAL_SMTP_USER=$LOCAL_SMTP_USER \ -#LOCAL_SMTP_HOST=$LOCAL_SMTP_HOST \ -#LOCAL_SMTP_PASSWORD=$LOCAL_SMTP_PASSWORD \ -# LOCAL_SMTP_PORT=$LOCAL_SMTP_PORT \ -# REMOTE_SMTP_HOST=$REMOTE_SMTP_HOST \ -# REMOTE_SMTP_PORT=$REMOTE_SMTP_PORT \ -# REMOTE_SMTP_USER=$REMOTE_SMTP_USER \ -# MAX_DAILY_EMAILS=$MAX_DAILY_EMAILS RUN npm run build && rm -rf public src