In some circumstances, users are finding permissions denied problems when running various utility scripts in the docker container.
Users should not need to be root inside the docker container, and in fact this will create problems later on if files are created as root user, they will not be editable later by non-root users. The docker containers are designed such that all work inside them should be done as the special develop user that is defined in the Dockerfile.
The solutions for this are to:
Don't run as root inside your containers when you touch any files in mounted volumes.
If you encounter problems with permissions in mounted volumes, sign out of your docker container and change the owner and group on the folder in the host machine that is being mounted in the guest.
In some circumstances, users are finding permissions denied problems when running various utility scripts in the docker container.
Users should not need to be root inside the docker container, and in fact this will create problems later on if files are created as root user, they will not be editable later by non-root users. The docker containers are designed such that all work inside them should be done as the special
develop
user that is defined in the Dockerfile.The solutions for this are to: