Is s3fs not able to mount inside docker container?
问题 I want to mount s3fs inside of docker container. I made docker image with s3fs, and did like this: host$ docker run -it --rm docker/s3fs bash [ root@container:~ ]$ s3fs s3bucket /mnt/s3bucket -o allow_other -o allow_other,default_acl=public-read -ouse_cache=/tmp fuse: failed to open /dev/fuse: Operation not permitted Showing "Operation not permitted" error. So I googled, and did like this (adding --privileged=true) again: host$ docker run -it --rm --privileged=true docker/s3fs bash [ root