23 lines
537 B
YAML
23 lines
537 B
YAML
watch:
|
|
workers: 20
|
|
schedule: "0 0 6 * * *" # daily at 06:00; six-field cron (sec min hr dom mon dow)
|
|
firstCheckNotif: false # don't email on first run for every image
|
|
jitter: 30s
|
|
|
|
providers:
|
|
docker:
|
|
watchByDefault: true # watch every running container without needing labels
|
|
watchStopped: false
|
|
|
|
notif:
|
|
mail:
|
|
host: smtp.fastmail.com
|
|
port: 465
|
|
ssl: true
|
|
insecureSkipVerify: false
|
|
username: timothykim@fastmail.fm
|
|
from: argento@fastmail.com
|
|
to:
|
|
- timothykim@fastmail.fm
|
|
|