You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure of what to add. I had it all working for a while. 2 things have changed since I last went on, 1 I upgraded to 23.04, and I noticed it as I was swapping my domain name over, using NGINX as ingress.
NIGINX CONFIG
server {
server_name reg.[ommited for privacy].com;
listen 80;
listen 443 ssl;
location /v2 {
# Do not allow connections from docker 1.5 and earlier
# docker pre-1.6.0 did not properly set the user agent on ping, catch "Go *" user agents
if ($http_user_agent ~ "^(docker\/1\.(3|4|5(?!\.[0-9]-dev))|Go ).*$" ) {
return 404;
}
set $upstream reg_registry;
resolver 127.0.0.11 valid=30s;
proxy_pass https://$upstream:5000;
proxy_set_header Host $http_host; # required for docker client's sake
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 900;
}
location / {
set $upstream2 reg_ui;
resolver 127.0.0.11 valid=30s;
proxy_pass http://$upstream2;
proxy_set_header Host $http_host; # required for docker client's sake
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Hi, I use this docker registry UI and I have an issue...
Bug description
When loading up the page I get the following error, and none of my containers show on the page
{"errors":[{"code":"PAGINATION_NUMBER_INVALID","message":"invalid number of results requested","detail":{"n":100000}}]}
How to Reproduce
Just loading up the page
Expected behavior
For it to display the containers in my registry
Screenshots
System information
Additional context
Not sure of what to add. I had it all working for a while. 2 things have changed since I last went on, 1 I upgraded to 23.04, and I noticed it as I was swapping my domain name over, using NGINX as ingress.
NIGINX CONFIG
Registry compose.yml
UI compose.yml
The text was updated successfully, but these errors were encountered: