Hi. Is it possible to somehow bind directly to NFS volume without CSI?
Somehow convert this docker-compose to Nomad job?
version: "3"
services:
app:
image: myapp
volumes:
- type: volume
source: nfs-volume
target: /nfs
volume:
nocopy: true
volumes:
nfs-volume:
driver_opts:
type: "nfs"
o: "addr=10.0.0.10,nolock,soft,rw"
device: ":/storage"