+
+ A default limit of 1000
images in catalog has been added in docker registry server
+ v2.8.2 (May 11, 2023) and we
+ cannot exceed this value without configuration.
+
+
+ The new default value for the UI is 1000
since
+ 2.5.0 and was 100000
from
+ 0.3.6.
+
+ Possible fixes
+
+ You can update the environment variable
+ REGISTRY_CATALOG_MAXENTRIES={ props.detail?.n || 100000 }
of your
+ docker registry server or you can update your
+ /etc/docker/registry/config.yml
configuration of your docker registry server and add
+ those lines:
+
+
+catalog:
+ maxentries: {props.detail?.n || 100000}
+
+
+ If you don't need that many images, you can reduce the number of elements fetch by the
+ docker registry UI with the environment variable CATALOG_ELEMENTS_LIMIT=1000
.
+
+
+ More about this issue:
+ Joxit/docker-registry-ui#306.
+
+