From c6330a0b3ebaa26d7c093fa2619e29470fc155dc Mon Sep 17 00:00:00 2001 From: Kappeh Date: Sat, 10 Jan 2026 02:16:34 +0000 Subject: [PATCH] Add docker registry ui container --- compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/compose.yml b/compose.yml index 3fdcd4b..cf750d3 100644 --- a/compose.yml +++ b/compose.yml @@ -20,6 +20,28 @@ services: volumes: - /mnt/docker_registry_2/data:/var/lib/registry:rw + registry_ui: + container_name: docker_registry_ui + image: joxit/docker-registry-ui:2.5.7 + restart: unless-stopped + # user: 2014:2014 # docker_registry:docker_registry + environment: + - "SINGLE_REGISTRY=true" + - "REGISTRY_TITLE=Local Docker Registry UI" + - "DELETE_IMAGES=true" + - "SHOW_CONTENT_DIGEST=true" + - "NGINX_PROXY_PASS_URL=https://registry.leaf.home.kappeh.org" + - "SHOW_CATALOG_NB_TAGS=true" + - "CATALOG_MIN_BRANCHES=1" + - "CATALOG_MAX_BRANCHES=1" + - "TAGLIST_PAGE_SIZE=100" + - "REGISTRY_SECURED=true" + - "THEME=dark" + networks: + - docker_registry_network + ports: + - 5002:80 + secrets: registry_auth_htpasswd: file: ./htpasswd