0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00

Problem with docker.yaml

There is a problem with the docker.yaml file.

auth:
   htpasswd:
     file:/verdaccio/config/htpasswd

The file property should point to /verdaccio/conf/htpasswd because folder /verdaccio/config dosen't exist and therefore dosen't let to create users.

Thank you for working on this great tool.

Regards
This commit is contained in:
José De Paz 2016-10-19 16:38:51 -06:00 committed by GitHub
parent 047fbb22f8
commit 831083a976

View file

@ -11,7 +11,7 @@ storage: /verdaccio/storage
auth:
htpasswd:
file: /verdaccio/config/htpasswd
file: /verdaccio/conf/htpasswd
# Maximum amount of users allowed to register, defaults to "+inf".
# You can set this to -1 to disable registration.
#max_users: 1000