This commit is contained in:
kev 2019-06-25 03:28:35 +08:00
parent 650168ece0
commit efa6e24a5c
3 changed files with 27 additions and 0 deletions

View File

@ -291,6 +291,7 @@ A collection of delicious docker recipes.
- [x] minio/minio
- [x] mongo
- [x] neo4j
- [x] erichough/nfs-server
- [x] odoo
- [x] osixia/openldap
- [x] campbellsoftwaresolutions/osticket

4
nfs/README.md Normal file
View File

@ -0,0 +1,4 @@
nfs
===
See: https://github.com/ehough/docker-nfs-server

22
nfs/docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
nfs:
image: erichough/nfs-server
ports:
- "111:111/tcp"
- "111:111/udp"
- "2049:2049/tcp"
- "2049:2049/udp"
- "32765:32765/tcp"
- "32765:32765/udp"
- "32767:32767/tcp"
- "32767:32767/udp"
volumes:
- ./data/splash:/export/splash:ro
- /lib/modules:/lib/modules:ro
environment:
- NFS_LOG_LEVEL=DEBUG
- NFS_EXPORT_0=/export/splash/filters *(ro,no_subtree_check)
- NFS_EXPORT_1=/export/splash/js-profiles *(ro,no_subtree_check)
- NFS_EXPORT_2=/export/splash/lua_modules *(ro,no_subtree_check)
- NFS_EXPORT_3=/export/splash/proxy-profiles *(ro,no_subtree_check)
privileged: true
restart: always