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
This is happening due to the docker configuration, admittedly it is not the best setup, but in order to have proper file permissions on Linux, I had to mirror the user's UID into the docker container which allowed for write access to the files copied inside the container. The script will detect your UID on your host machine (desktop / laptop / etc) and try to use that for the moos user in the docker container.
It looks like, when launching the docker container, you are logged in with a user which has a UID of zero. Because this is already used by the root user in the docker container, you are getting an error.
I would suggest trying to launch docker via a non-root user (one without UID of zero).
Step 8/38 : RUN usermod -u $USER_ID moos
---> Running in 97e913ca6b0c
usermod: UID '0' already exists
The command '/bin/bash -c usermod -u $USER_ID moos' returned a non-zero code: 4
What is the problem and how to solve it
The text was updated successfully, but these errors were encountered: