- 3,788
- 1,297
- NAS
- DS4l8play, DS202j, DS3623xs+, DSM 7.3.3-25847
When I open Portainer console and enter
nothing happens. Only a flashing cursor...
... and the container log is unchanged.
Here's my docker-compose
and my diun.yml
The log looks fine
Obviously I'm missing something here.
Suggestions?
Code:
diun notif test

... and the container log is unchanged.
Here's my docker-compose
Code:
version: "3.5"
services:
diun:
image: crazymax/diun
container_name: diun
volumes:
- /home/telos/docker/diun/data:/data
- /home/telos/docker/diun/diun.yml:/diun.yml:ro
- "/var/run/docker.sock:/var/run/docker.sock"
environment:
- "TZ=America/Chicago"
- "LOG_LEVEL=info"
- "LOG_JSON=false"
restart: always
and my diun.yml
Code:
db:
path: diun.db
watch:
workers: 10
schedule: "0 0 * * MON"
firstCheckNotif: true
notif:
mail:
host: smtp.telos.net
username: [email protected]
password: qwerty123
port: 587
ssl: false
insecureSkipVerify: false
from: [email protected]
to:
- [email protected]
providers:
docker:
watchStopped: true
watchByDefault: true
The log looks fine

Obviously I'm missing something here.
Suggestions?