Does Docker Hub have a size limitation on repos or images?

I am interested in using Docker Hub for Automated Builds.

The Docker Hub Pricing shows that each plan has a limited number of repos.

  1. Does a repo have a max size? (Pulling code from github might include images, binaries, etc.)
  2. Does a build image have a max size? (Same idea as the first question)
  3. Is there a limit on the number of builds or tags?

A repository can have any number of image tags. There is not a stated limit for size. In practice, if an image layer gets much larger than 10 or 20 gigabytes, you may experience problems with push and pull. Your mileage may vary.

There is no limit for builds or tags.

3 Likes