Hi, it looks like we are hitting docker hub’s rate...
# sst
j
Hi, it looks like we are hitting docker hub’s rate limit:
Copy code
$ docker run -d --rm -p 6379:6379 -e DOCKER_HOST=unix:///var/run/docker.sock redis:5
0.25 s
Unable to find image 'redis:5' locally
docker: Error response from daemon: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: <https://www.docker.com/increase-rate-limit>.
See 'docker run --help'.
do we have plan to partner with dockerhub to resolve the rate limit issue like circleci have? thanks in advance
f
Hey @Jason Feng, yup let me look into that!
For now, can you try logging in to dockerhub before the
docker run
command?
Copy code
docker login <http://registry.example.com|registry.example.com> -u <username> -p <token>
j
thank you!