mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-28 07:59:55 +03:00
21 lines
600 B
Markdown
21 lines
600 B
Markdown
# Docker Registry Static as proxy example
|
|
|
|
You can set up the static user interface as proxy in several ways.
|
|
|
|
If you want to populate your registry, use `populate.sh` script.
|
|
The interface will be accessible with <http://localhost>.
|
|
|
|
The simplest way is with `simple.yml` docker-compose file.
|
|
|
|
```sh
|
|
docker-compose -f simple.yml up -d
|
|
./populate.sh
|
|
```
|
|
|
|
You can add some credentials to access your registry wit `credentials.yml` docker-compose file.
|
|
Credentials for this example are login: `registry` and password: `ui` using bcrypt.
|
|
|
|
```sh
|
|
docker-compose -f credentials.yml up -d
|
|
./populate.sh
|
|
```
|