Hi Folks,
According to the post I found in this forum (see How to add SMTP (mail) configuration? - #7 by Kevin) I tried to add my mail config for ghost, but it doesn‘t work. Has anybody an idea, what I am doing wrong.
services:
ghost:
image: ghost:5-alpine
restart: always
networks:
- traefik
- default
env_file: ".env"
environment:
database__client: "${DB_TYPE}"
database__connection__host: "${DB_HOST}"
database__connection__user: "${DB_USER}"
database__connection__password: "${DB_PASS}"
database__connection__database: "${DB_NAME}"
mail__transport: "SMTP"
mail__options__host: "${MAILGUN_HOST}"
mail__options__port: "${MAILGUN_PORT}"
mail__options__secure: false
mail__options__auth__user: "${MAILGUN_USER}"
mail__options__auth__pass: "${MAILGUN_PASS}"
mail__from: "${MAILGUN_FROM}"
url: "${BLOG_URL}"
volumes:
- ./data/ghost:/var/lib/ghost/content
Thanks for any help or hint.
Best regards,
Marc