[GH-ISSUE #29] image detail page shown empty without any error #20

Open
opened 2026-02-27 07:15:12 +03:00 by kerem · 1 comment
Owner

Originally created by @typoworx-de on GitHub (Mar 14, 2023).
Original GitHub issue: https://github.com/jc21/docker-registry-ui/issues/29

I've just deployed docker-registry-ui. I really like the simple way to deploy it and the lightweight UI. But at least for me, it's shown "very lightful" after clicking on an image-name. The front-page works fine showing my images very quick. The detail page only shows the pure layout but no body, content or error. Also browser console and network-debug tab shows no culprit.

The registry backend ist docker registry:2. Any idea what's wrong?

version: "3.7"

networks:
  default:
    external: true

volumes:
  cert-storage:
    name: php-stack-cert-storage
    driver: local
    driver_opts:
      type: none
      device: "$HOME/.local/share/mkcert"
      o: bind
  docker-registry-storage:
  docker-registry-config:

services:
  docker-registry:
    image: registry:2
    restart: on-failure
    hostname: registry-api.php-stack.docker
    ports:
      - "127.0.0.11:5000:5000/tcp"
    networks:
      - default
    environment:
      #REGISTRY_HTTP_ADDR: "0.0.0.0:5000"
      REGISTRY_HTTP_TLS_CERTIFICATE: "/certs/_wildcard.php-stack.docker.pem"
      REGISTRY_HTTP_TLS_KEY: "/certs/_wildcard.php-stack.docker-key.pem"
      REGISTRY_STORAGE_DELETE_ENABLED: true
    volumes:
      - "cert-storage:/certs"
      - "docker-registry-storage:/var/lib/registry"
      - "docker-registry-config:/etc/docker/registry"

  docker-registry-ui:
    image: jc21/registry-ui
    restart: on-failure
    depends_on:
      - docker-registry
    hostname: registry.php-stack.docker
    networks:
      - default
    environment:
      SUPPRESS_NO_CONFIG_WARNING: true
      REGISTRY_HOST: registry-api.php-stack.docker:5000
      REGISTRY_DOMAIN: registry-api.php-stack.docker:5000
      REGISTRY_SSL: true
      REGISTRY_STORAGE_DELETE_ENABLED: true
      #REGISTRY_USER:
      #REGISTRY_PASS:
Originally created by @typoworx-de on GitHub (Mar 14, 2023). Original GitHub issue: https://github.com/jc21/docker-registry-ui/issues/29 I've just deployed docker-registry-ui. I really like the simple way to deploy it and the lightweight UI. But at least for me, it's shown "very lightful" after clicking on an image-name. The front-page works fine showing my images very quick. The detail page only shows the pure layout but no body, content or error. Also browser console and network-debug tab shows no culprit. The registry backend ist docker registry:2. Any idea what's wrong? ```yaml version: "3.7" networks: default: external: true volumes: cert-storage: name: php-stack-cert-storage driver: local driver_opts: type: none device: "$HOME/.local/share/mkcert" o: bind docker-registry-storage: docker-registry-config: services: docker-registry: image: registry:2 restart: on-failure hostname: registry-api.php-stack.docker ports: - "127.0.0.11:5000:5000/tcp" networks: - default environment: #REGISTRY_HTTP_ADDR: "0.0.0.0:5000" REGISTRY_HTTP_TLS_CERTIFICATE: "/certs/_wildcard.php-stack.docker.pem" REGISTRY_HTTP_TLS_KEY: "/certs/_wildcard.php-stack.docker-key.pem" REGISTRY_STORAGE_DELETE_ENABLED: true volumes: - "cert-storage:/certs" - "docker-registry-storage:/var/lib/registry" - "docker-registry-config:/etc/docker/registry" docker-registry-ui: image: jc21/registry-ui restart: on-failure depends_on: - docker-registry hostname: registry.php-stack.docker networks: - default environment: SUPPRESS_NO_CONFIG_WARNING: true REGISTRY_HOST: registry-api.php-stack.docker:5000 REGISTRY_DOMAIN: registry-api.php-stack.docker:5000 REGISTRY_SSL: true REGISTRY_STORAGE_DELETE_ENABLED: true #REGISTRY_USER: #REGISTRY_PASS: ```
Author
Owner

@pthoelken commented on GitHub (Nov 22, 2023):

same here, I saw just the loading circle. @jc21 is this project still in development?

I got this error message in the web developer console log. At my side, it's only comes up with a harbor registry. When I host the registry locally with registry:latest there are not problems. Down below a small example beginning of my Dockefiles.

image

FROM alpine/k8s:1.23.7
LABEL maintainer="FooBar Inc. <patrick@foo.bar>"
...
<!-- gh-comment-id:1822643568 --> @pthoelken commented on GitHub (Nov 22, 2023): same here, I saw just the loading circle. @jc21 is this project still in development? I got this error message in the web developer console log. At my side, it's only comes up with a harbor registry. When I host the registry locally with registry:latest there are not problems. Down below a small example beginning of my Dockefiles. ![image](https://github.com/jc21/docker-registry-ui/assets/12643853/607e48d5-2797-4379-bd93-6f48af51c41e) ``` FROM alpine/k8s:1.23.7 LABEL maintainer="FooBar Inc. <patrick@foo.bar>" ... ```
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/docker-registry-ui-jc21#20
No description provided.