Merge pull request #12702 from stefanloerwald/patch-2
Fixes docker/distribution-library-image/issues/107
This commit is contained in:
commit
b70327a8ec
1 changed files with 7 additions and 1 deletions
|
@ -409,7 +409,13 @@ secrets.
|
|||
$ mkdir auth
|
||||
$ docker run \
|
||||
--entrypoint htpasswd \
|
||||
registry:2 -Bbn testuser testpassword > auth/htpasswd
|
||||
httpd:2 -Bbn testuser testpassword > auth/htpasswd
|
||||
```
|
||||
|
||||
On Windows, make sure the output file is correctly encoded:
|
||||
|
||||
```powershell
|
||||
docker run --rm --entrypoint htpasswd httpd:2 -Bbn testuser testpassword | Set-Content -Encoding ASCII auth/htpasswd
|
||||
```
|
||||
|
||||
2. Stop the registry.
|
||||
|
|
Loading…
Reference in a new issue