I have docker set up for a directory using the following command: sudo docker run --gpus all -it -p 8889:8888 -v <dir-name>:/tf latest-gpu-jupyter
. Jupyter Notebook, drivers for my GPU and Tensorflow comes preinstalled. The problem is that in GUI the files have the following lock:
And in terminal, if I use rm <file-name>
, it returns rm: remove write-protected regular file '<file-name>'
. I can use rm -f <file-name>
to avoid this error. But still, is it a normal thing to happen? Can I avoid this in docker?
My environment:
- Ubuntu 20.04.2 LTS