| 12345678910111213 |
- services:
- nfs:
- image: erichough/nfs-server
- privileged: true
- ports:
- - "2049:2049"
- environment:
- NFS_EXPORT_0: '/nfs *(rw,no_root_squash,all_squash,sync,insecure,no_wdelay,no_subtree_check,fsid=0)'
- volumes:
- - nfs_data:/nfs
- volumes:
- nfs_data:
|