I\'m trying to install and use FUSE inside a Docker container. My Dockerfile is the following:
FROM golang:1.8 WORKDIR /go/src/app COPY . . RUN apt-get update
you need to run the container as privileged, alternatively, add SYS_ADMIN specifically.
SYS_ADMIN