From 28310f9804753f2f1beb2c5a267eb2c0eb89fcb0 Mon Sep 17 00:00:00 2001 From: Joxit Date: Wed, 4 Sep 2019 21:29:58 +0200 Subject: [PATCH] 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