New Docker Pull Rates #725
-
Hey, I followed the issue about the pull rate limits and waited for the update to be pushed to release. I am logged in on my Server (with my Docker Hub Premium), and I connected the config.json into the watchtower container. Log
If I add Already thank you all! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, you need to do that for the credentials to be picked up. However, if you only intend to use DockerHub images, you could also try out the following, which will add that credential to all calls: $ docker run -d \
--name watchtower \
-e REPO_USER=username \
-e REPO_PASS=password \
-v /var/run/docker.sock:/var/run/docker.sock \
containrrr/watchtower container_to_watch --debug |
Beta Was this translation helpful? Give feedback.
Yes, you need to do that for the credentials to be picked up. However, if you only intend to use DockerHub images, you could also try out the following, which will add that credential to all calls: