docker-nfs-server
docker-nfs-server copied to clipboard
A lightweight, robust, flexible, and containerized NFS server.
Hello, I try to run this docker conainer with the following docker-compose.yml file: ```yaml version: '3' services: nfs-server: image: erichough/nfs-server volumes: - nfs:/filesystem - ./nfs/exports.txt:/etc/exports:ro ports: - 20490:2049 # privileged:...
```yaml kind: Service apiVersion: v1 metadata: name: nfs-server spec: ports: - name: nfs port: 2049 - name: mountd port: 20048 - name: rpcbind port: 111 selector: role: nfs-server --- apiVersion:...
I've encountered this issue while building the image on my RaspberyPi. In the latest version `=` is removed from the `capsh` output, therefore `SYS_ADMIN` / `privileged` is not properly detected....
I'm getting `mount(2): Operation not permitted` when I try to mount the nfs-share. I've adapted [apparmor](https://github.com/ehough/docker-nfs-server/blob/develop/doc/feature/apparmor.md) and [added `cap_sys_admin`](https://github.com/ehough/docker-nfs-server/issues/20#issuecomment-461564175) for my current user (Which you mentioned in the linked issue)....
I would like to remove the following requirements to better secure the host. ``` --cap-add SYS_MODULE \ --cap-add SYS_ADMIN \ ``` Would it be possible to mount the shares prior...
Docker image erichough/nfs-server:2.2.1 https://github.com/anchore/grype ``` grype erichough/nfs-server:2.2.1 ✔ Vulnerability DB [no update available] ✔ Pulled image ✔ Loaded image ✔ Parsed image ✔ Cataloged packages [34 packages] ✔ Scanned image...
This docker image is using 157 MB of RAM. It's not a big deal in my server but I think it's too much compared to similar services. For example Samba...
Signed-off-by: Maciej Pijanowski
On my docker server which started properly with next command ``` sudo docker run -v /mnt/nfstest/:/mnt/nfstest -v /etc/exports:/etc/exports:ro --privileged -p 2049:2049 --security-opt apparmor=erichough-nfs erichough/nfs-server ``` I am running a Virtual...
Hi everyone, I get this error when i run the container : Impossible to find the solution. i tried many things but without success In the logs i get this...