You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 6, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [unreleased]
8
8
9
+
### Fixed
10
+
* Broken links in README, both on GitHub and Docker Hub ([#29](https://github.com/ehough/docker-nfs-server/issues/29), [#35](https://github.com/ehough/docker-nfs-server/issues/35))
11
+
9
12
### Changed
10
13
* Use pure Bash for uppercasing strings ([#36](https://github.com/ehough/docker-nfs-server/issues/36))
-[NFSv4 user ID mapping](https://github.com/ehough/docker-nfs-server/blob/develop/doc/feature/nfs4-user-id-mapping.md) via [`idmapd`](http://man7.org/linux/man-pages/man8/idmapd.8.html)
@@ -48,7 +48,7 @@ This is the only containerized NFS server that offers **all** of the following f
48
48
49
49
`modprobe {nfs,nfsd,rpcsec_gss_krb5}`
50
50
51
-
or you can just allow the container to [load them automatically](doc/feature/auto-load-kernel-modules.md).
51
+
or you can just allow the container to [load them automatically](https://github.com/ehough/docker-nfs-server/blob/develop/doc/feature/auto-load-kernel-modules.md).
52
52
1. The container will need to run with `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.
53
53
1. The container will need local access to the files you'd like to serve via NFS. You can use Docker volumes, bind mounts, files baked into a custom image, or virtually any other means of supplying files to a Docker container.
54
54
@@ -121,7 +121,7 @@ Let's break that command down into its individual pieces to see what's required
121
121
122
122
1. **Expose the server ports**
123
123
124
-
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](doc/ports.md).
124
+
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](https://github.com/ehough/docker-nfs-server/blob/develop/doc/advanced/ports.md).
125
125
126
126
* If your clients connect via **NFSv4 only**, you can get by with just TCP port `2049`:
127
127
@@ -145,17 +145,17 @@ If you pay close attention to each of the items in this section, the server shou
145
145
146
146
## Optional Features
147
147
148
-
* [Debug logging](doc/feature/logging.md)
149
-
* [Kerberos security](doc/feature/kerberos.md)
150
-
* [NFSv4 user ID mapping](doc/feature/nfs4-user-id-mapping.md)
0 commit comments