-
Hi all, Suddenly started getting emails with the following"
Logs show the following:
Any ideas what might be happening would be appreciated. TIA |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Did you ever figure out what is happening? I just setup watchtower and I seeing the same messages. |
Beta Was this translation helpful? Give feedback.
-
I just found this setting to disable the warning. WATCHTOWER_WARN_ON_HEAD_FAILURE=never |
Beta Was this translation helpful? Give feedback.
-
Note: I'm adding this here, since it comes up when searching for the warning message: This is warning. But as it mentions:
It still checks if the container is updated, but it uses What can I do to solve it? You can disable the warning using |
Beta Was this translation helpful? Give feedback.
Note: I'm adding this here, since it comes up when searching for the warning message:
This is warning. But as it mentions:
It still checks if the container is updated, but it uses
docker pull
, which uses up the rate limit imposed by docker hub. If you have a really small interval, let's say 5 minutes, this will lead you to reach the limit after a while and prevents watchtower from working until the limit is renewed (every 6 hours).See https://www.docker.com/increase-rate-limits/ for more information about the limits.
What can I do to solve it?
You can disable the warning using
WATCHTOWER_WARN_ON_HEAD_FAILURE=never
or--warn-on-head-failure never
.But note t…