I created a cloud storage bucket and mounted it to my local machine using gcsfuse
Then I tried to run docker inside of the bucket. But got error “permission denied”.
(I included the screenshots). Please help.
I created a cloud storage bucket and mounted it to my local machine using gcsfuse
Then I tried to run docker inside of the bucket. But got error “permission denied”.
(I included the screenshots). Please help.
Hello @sreejithngvr ,
Welcome to the Google Cloud Community!
According to this documentation, the FUSE kernel layer restricts file system access exclusively to the mounting user, as detailed in the documentation (fuse.txt). Regardless of the configured inode permissions, by default, other users will encounter “permission denied” errors when they attempt to access the file system. This restriction applies even to the root user.
This limitation can be bypassed by applying the -o allow_other option, which permits other users to access the file system. However, be aware of potential security implications detailed here.