FUSE inside Docker

前端 未结 3 1373
南旧
南旧 2021-01-31 04:54

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          


        
3条回答
  •  無奈伤痛
    2021-01-31 05:21

    you need to run the container as privileged, alternatively, add SYS_ADMIN specifically.

提交回复
热议问题