Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A Docker image running an NFSv4 server.

NotificationsYou must be signed in to change notification settings

normal-computing/docker-nfs-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thenfs-server image provides a minimal NFSv4 server.

Usage

Running the container in Docker requires:

  1. making the container privileged to allow it to mount the nfsdpseudo-filesystem;
  2. mounting a volume to/mnt/data, the directory that will be exported;
  3. exposing the port used for NFSv4 (2049).

For example:

    docker run --privileged -v <directory>:/mnt/data:rw -p 2049:2049 \           ghcr.io/normal-computing/nfs-server:latest

where<directory> is the path of the directory you want to serve.

The directory can then be mounted:

sudo mount -v -t nfs4 -o proto=tcp,port=2049 127.0.0.1:/ <target>

where<target> is the mount point.

Configuration

The following environment variables affect the NFS server:

  • NFS_SERVER_DEBUG: if set to1, enable debug logs for NFS server daemons(default:0).
  • NFS_SERVER_ALLOWED_CLIENTS: the network address to allow connections from(default:172.16.0.0/12, used by Docker on Linux for all networks).

About

A Docker image running an NFSv4 server.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

[8]ページ先頭

©2009-2025 Movatter.jp