Notifications not working #1387
Unanswered
thebigjoe1
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Below is my docker compose file. Can anyone tell me if I've done something wrong with respect to gotify/email notifications? I have an .env file for everything, which has served me well with other docker projects. I don't see any error in the logs or any mention of gotify/email notifications int he container logs. Any help is appreciated.
services:
diun:
image: crazymax/diun:latest
container_name: diun
command: serve
volumes:
- "/opt/docker-apps/diun/data:/data"
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
TZ: America/New_York
DIUN_WATCH_WORKERS: 20
DIUN_WATCH_SCHEDULE: 0 */6 * * *
DIUN_WATCH_JITTER: 30s
DIUN_PROVIDERS_DOCKER: true
DIUN_PROVIDERS_DOCKER_WATCHBYDEFAULT: true
diun.notify_on: new,update
DIUN_NOTIF_GOTIFY_ENDPOINT: ${DIUN_NOTIF_GOTIFY_ENDPOINT}
DIUN_NOTIF_GOTIFY_TOKEN: ${DIUN_NOTIF_GOTIFY_TOKEN}
DIUN_NOTIF_MAIL_HOST: ${DIUN_NOTIF_MAIL_HOST}
DIUN_NOTIF_MAIL_PORT: ${DIUN_NOTIF_MAIL_PORT}
DIUN_NOTIF_MAIL_USERNAME: ${DIUN_NOTIF_MAIL_USERNAME}
DIUN_NOTIF_MAIL_PASSWORD: ${DIUN_NOTIF_MAIL_PASSWORD}
DIUN_NOTIF_MAIL_FROM: ${DIUN_NOTIF_MAIL_FROM}
DIUN_NOTIF_MAIL_TO: ${DIUN_NOTIF_MAIL_TO}
restart: always
Beta Was this translation helpful? Give feedback.
All reactions