Skip to content

FUSE and Docker

Matt Bianchi edited this page Jun 20, 2018 · 13 revisions

Users and FUSE

Because of the nature of FUSE systems, only the user who starts a FUSE program will be able to read the files mounted. This can be changed by editing a config file on the machine to allow_others, but be warned that there are security implications to be considered. Generally we don't recommend this option. It is best to create a user one intends on using to mount fusera and to invoke the tools that will interact with fusera. This avoids this issue.

But what about using Docker containers which run as different users?

If a user desires to run tools inside a docker container on files inside fusera's file system, they still both need to be operating as the same user. This is best done by doing everything from inside the docker container.

Clone this wiki locally