From 6296a192d653218092c789c186d3be23b880675e Mon Sep 17 00:00:00 2001 From: Joxit Date: Sat, 31 Aug 2019 23:43:34 +0200 Subject: [PATCH 1/2] Add FAQ in Readme --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 08140c4..6ecf3ea 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,15 @@ This web user interface uses [Riot](https://github.com/Riot/riot) the react-like - Customise docker pull command on static registry UI (see [#71](https://github.com/Joxit/docker-registry-ui/issues/71)) **static interface**. - Add custom header via environment variable and file (see [#89](https://github.com/Joxit/docker-registry-ui/pull/89)) **static interface** +## FAQ + +- Why when I delete all tags of an image, the image is still in the UI ? + - This is a docker registry limitation, the garbage collector don't remove empty images. +- Why the image size in the UI is not the same as displayed during `docker images` ? + - The UI displays the compressed size of the image and not the extracted size version. +- Can I use HTTPS on the UI ? + - Yes, put your favourite reverse proxy on the front of the UI. Your reverse proxy will take care of HTTPS connection. + ## Getting Started ### Basic From 28310f9804753f2f1beb2c5a267eb2c0eb89fcb0 Mon Sep 17 00:00:00 2001 From: Joxit Date: Wed, 4 Sep 2019 21:29:58 +0200 Subject: [PATCH 2/2] Add more questions in FAQ --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ecf3ea..1d0c3cd 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,20 @@ This web user interface uses [Riot](https://github.com/Riot/riot) the react-like ## FAQ -- Why when I delete all tags of an image, the image is still in the UI ? - - This is a docker registry limitation, the garbage collector don't remove empty images. +- Why, when I delete all tags of an image, the image is still in the UI ? + - This is a limitation of docker registry, the garbage collector don't remove empty images. If you want to delete dangling images, you will need to delete the folder in your registry data. (see [#77](https://github.com/Joxit/docker-registry-ui/issues/77)) - Why the image size in the UI is not the same as displayed during `docker images` ? - The UI displays the compressed size of the image and not the extracted size version. - Can I use HTTPS on the UI ? - Yes, put your favourite reverse proxy on the front of the UI. Your reverse proxy will take care of HTTPS connection. +- Does the UI support authentication ? + - Yes, but it supports only basic auth. It's a simple standalone frontend, it will use your browser window for authentication. +- Can I use the UI and docker client with an insecure registry (registry url without https) ? + - Yes you can, you must first configure your docker client. (see [#76](https://github.com/Joxit/docker-registry-ui/issues/76)) +- What does Mixed Content error mean ? + - This means you are using a UI with HTTPS and your registry is using HTTP (unsecured). When you are on a HTTPS site, you can't get HTTP content. Upgrade you registry with a HTTPS connection. + +Need more informations ? Try my [examples](https://github.com/Joxit/docker-registry-ui/tree/master/examples) or open an issue. ## Getting Started