mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-12 04:23:04 +02:00
add nfs
This commit is contained in:
parent
650168ece0
commit
efa6e24a5c
@ -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
4
nfs/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
nfs
|
||||
===
|
||||
|
||||
See: https://github.com/ehough/docker-nfs-server
|
22
nfs/docker-compose.yml
Normal file
22
nfs/docker-compose.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user