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.
15 lines
273 B
YAML
15 lines
273 B
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
environment:
|
|
- DISCOURSE_SMTP_PASSWORD_FILE=/var/run/secrets/smtp_password
|
|
secrets:
|
|
- smtp_password
|
|
|
|
secrets:
|
|
smtp_password:
|
|
external: true
|
|
name: ${STACK_NAME}_smtp_password_${SECRET_SMTP_PASSWORD_VERSION}
|