-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
group id not set in docker-custom/Dockerfile.custom (v1.1.3) #203
Comments
I have the same issue with 1.2.7. When I map
The permissions for the host directory are |
I was able to work around this issue by adding user: root to my docker-compose for node-red to force the container to run under root on the host. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, in
docker-custom/Dockerfile.custom
no group id is created or assigned to the usernode-red
. It defaults to the root group. This creates permission problems when running something like,as the permissions in the host directory
/home/user/.node-red
, become mangled.Adding something like the following seems to address it,
The text was updated successfully, but these errors were encountered: