I’ve installed NFS 0.30 (last version) stack using catalog.
The options are:
MOUNT_DIR /
MOUNT_OPTS proto=tcp,port=2049,nfsvers=4
NFS_SERVER xxx.xxx.xxx.xxx (digitalocean droplet public ip)
The container starts normally and seems to be working fine.
So, then I try to create a simple stack using the NFS with this docker-compose:
version: '2'
services:
web:
image: nginx
volumes:
- bar:/var/bar
volumes:
bar:
driver: rancher-nfs
```
And I get this error:
```(Expected state running but got error: Error response from daemon: create aaaa_bar_8fa9a: VolumeDriver.Create: Failed nsenter -t 11437 -n mount -o proto=tcp,port=2049,nfsvers=4 xx.xx.xx.xx:/ /tmp/5ht8d)```
<img src="//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/flex020/uploads/suse/original/2X/9/96f1a82333948a6ed1eccea76b21f2641623651c.png" width="690" height="86">
Any idea on this?