I am installing the following applications through truecharts' custom-app.
The original CLI command is as follows:
This is an application for mounting a network disk to the local device. How should the following parameters in the command: "shared", "--pid host", "--privileged", and "--device /dev/fuse:/dev/fuse" be set in custom-app?
Please help, Thanks!
The original CLI command is as follows:
Code:
docker run -d \ --name Clouddrive2 \ -v /CloudNAS:/CloudNAS:shared \ -p 19798:19798 \ --pid host \ --privileged \ --device /dev/fuse:/dev/fuse \ cloudnas/clouddrive2:latest
This is an application for mounting a network disk to the local device. How should the following parameters in the command: "shared", "--pid host", "--privileged", and "--device /dev/fuse:/dev/fuse" be set in custom-app?
Please help, Thanks!