A lightweight, robust, flexible, and containerized NFS server.
This is the only containerized NFS server that offers all of the following features:
nfsd
processes on Docker host)/etc/exports
idmapd
The Docker host kernel will need the following kernel modules
nfs
nfsd
rpcsec_gss_krb5
(only if Kerberos is used)You can manually enable these modules on the Docker host with:
modprobe {nfs,nfsd,rpcsec_gss_krb5}
or you can just allow the container to load them automatically.
CAP_SYS_ADMIN
(or --privileged
). This is necessary as the server needs to mount several filesystems inside the container to support its operation, and performing mounts from inside a container is impossible without these capabilities.Starting the erichough/nfs-server
image will launch an NFS server. You'll need to supply some information upon container startup, which we'll cover below, but briefly speaking your docker run
command might look something like this:
docker run \
-v /host/path/to/shared/files:/some/container/path \
-v /host/path/to/exports.txt:/etc/exports:ro \
--cap-add SYS_ADMIN \
-p 2049:2049 \
erichough/nfs-server
Let's break that command down into its individual pieces to see what's required for a successful server startup.
Provide the files to be shared over NFS
As noted in the requirements, the container will need local access to the files you'd like to share over NFS. Some ideas for supplying these files:
-v /host/path/to/shared/files:/some/container/path
)-v some_volume:/some/container/path
)Dockerfile
: COPY /host/files /some/container/path
)You may use any combination of the above, or any other means to supply files to the container.
Provide your desired NFS exports (/etc/exports
)
You'll need to tell the server which container directories to share. You have three options for this; choose whichever one you prefer:
bind mount /etc/exports
into the container
docker run \ -v /host/path/to/exports.txt:/etc/exports:ro \ ... \ erichough/nfs-server
provide each line of /etc/exports
as an environment variable
The container will look for environment variables that start with NFS_EXPORT_
and end with an integer. e.g. NFS_EXPORT_0
, NFS_EXPORT_1
, etc.
docker run \ -e NFS_EXPORT_0='/container/path/foo *(ro,no_subtree_check)' \ -e NFS_EXPORT_1='/container/path/bar 123.123.123.123/32(rw,no_subtree_check)' \ ... \ erichough/nfs-server
bake /etc/exports
into a custom image
e.g. in a Dockerfile
:
FROM erichough/nfs-server
ADD /host/path/to/exports.txt /etc/exports
Use --cap-add SYS_ADMIN
or --privileged
As noted in the requirements, the container will need additional privileges. So your run
command will need either:
docker run --cap-add SYS_ADMIN ... erichough/nfs-server
or
docker run --privileged ... erichough/nfs-server
Not sure which to use? Go for --cap-add SYS_ADMIN
as it's the lesser of two evils.
Expose the server ports
You'll need to open up at least one server port for your client connections. The ports listed in the examples below are the defaults used by this image and most can be customized.
If your clients connect via NFSv4 only, you can get by with just TCP port 2049
:
docker run -p 2049:2049 ... erichough/nfs-server
If you'd like to support NFSv3, you'll need to expose a lot more ports:
docker run \ -p 2049:2049 -p 2049:2049/udp \ -p 111:111 -p 111:111/udp \ -p 32765:32765 -p 32765:32765/udp \ -p 32767:32767 -p 32767:32767/udp \ ... \ erichough/nfs-server
If you pay close attention to each of the items in this section, the server should start quickly and be ready to accept your NFS clients.
# mount <container-IP>:/some/export /some/local/path
Please open an issue if you have any questions, constructive criticism, or can't get something to work.
rpc.nfsd
takes 5 minutes to startup/timeout unless rpcbind
is runningThis work was based on prior projects: