You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2021. It is now read-only.
Following note in the Docker-doc specifies the wrong chown user:group:
Note: Verdaccio runs as a non-root user (uid=10001) inside the container, if you use bind mount to override default, you need to make sure the mount directory is assigned to the right user. In above example, you need to run sudo chown -R 100:101 /opt/verdaccio otherwise you will get permission errors at runtime. Use docker volume is recommended over using bind mount.
This used to work pre v4.0 but, inspecting the Dockerfile for v4.0 and looking in the container shows:
user 'verdaccio' id: 10001
belonging to group 'nogroup' with id: 65533
So, chown instructions in the note should read: sudo chown -R 10001:65533 /opt/verdaccio
There is also an indication of this in the original note itself as it mentions uid=10001
The text was updated successfully, but these errors were encountered:
Following note in the Docker-doc specifies the wrong chown user:group:
This used to work pre v4.0 but, inspecting the Dockerfile for v4.0 and looking in the container shows:
So, chown instructions in the note should read:
sudo chown -R 10001:65533 /opt/verdaccio
The text was updated successfully, but these errors were encountered: