From 9ff5e190e71b2d804675b23721e4c54e0831d558 Mon Sep 17 00:00:00 2001 From: autonomic-bot Date: Thu, 18 Jun 2026 06:47:09 +0000 Subject: [PATCH] fix: drop orphaned image-less sidekiq from compose.smtpauth.yml The official-image migration removed the separate sidekiq service from compose.yml (sidekiq now runs inside the official discourse app image). The compose.smtpauth.yml overlay still declared a sidekiq: block (smtp env + smtp_password secret, no image), leaving a dangling image-less service in the smtpauth-merged compose -> abra recipe lint R011 fail (invalid reference format) and a broken SMTP-auth deploy. The app: override already carries the DISCOURSE_SMTP_PASSWORD_FILE env + smtp_password secret (and compose.yml app has all DISCOURSE_SMTP_* vars), so the sidekiq override is redundant. Drop it. --- compose.smtpauth.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compose.smtpauth.yml b/compose.smtpauth.yml index 8b23f8d..f6f92c0 100644 --- a/compose.smtpauth.yml +++ b/compose.smtpauth.yml @@ -8,12 +8,6 @@ services: secrets: - smtp_password - sidekiq: - environment: - - DISCOURSE_SMTP_PASSWORD_FILE=/var/run/secrets/smtp_password - secrets: - - smtp_password - secrets: smtp_password: external: true