I own a folder, /me/tmp to which I mount a docker volume: docker run -v /me/tmp/:/root/tmp/. However when my Docker container creates folder and files instead the directory, e.g. /root/tmp/subdir/file.txt that file is created as root, and with no write permissions for other groups or users. This means that outside the container, I can't edit or even remove this file /me/tmp/subdir/file.txt. Is there any way to change the permissions or owner of the file without root access, or any way to avoid this from the start?