Using watchtower to monitor without pulling new images #557
-
Hello,
from the log:
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
Hi, and welcome to the community! 🎉 Watchtower works great with portainer, I've been using it this way myself for the last couple of years. I noticed though that you've got both To quote the docs for
What this means is that; as the only way watchtower is able to check for new remote images is to pull them, you can't really disable pulling new images and still getting notifications about whether a new remote image is available. https://docker-notify.com/ for instance seems to send an email digest with updated images. Maybe this could be what you're looking for? Do note though that I've not tried this service, so I can't really vouch for it's quality. |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
I'm looking to do similar to what's being described in this thread, and want to augment the following notification-report template to provide: Current Output
Desired Output
However, I'm unable to find a list of the log entries or notification.data structs I can reference to augment below template I'm using to add the ability to reference a new image found but not deployed due to monitoring only. {{- if .Report -}}
|
Beta Was this translation helpful? Give feedback.
-
here is my compose file, with some advantages for the same functionality: version: "2"
|
Beta Was this translation helpful? Give feedback.
Hi, and welcome to the community! 🎉
Watchtower works great with portainer, I've been using it this way myself for the last couple of years. I noticed though that you've got both
WATCHTOWER_NO_PULL
andWATCHTOWER_MONITOR_ONLY
enabled.To quote the docs for
--no-pull
:What this means is that; as the only way watchtower is able to check for new remote images is to pull them, you can't really disable p…