Skip to content
This repository was archived by the owner on Oct 6, 2023. It is now read-only.

Commit da95219

Browse files
committed
typos and touch-ups in README
1 parent 898bc38 commit da95219

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Let's break that command down into its individual pieces to see what's required
7777

7878
docker run \
7979
-v /host/path/to/exports.txt:/etc/exports:ro \
80-
... \
80+
... \
8181
erichough/nfs-server
8282
8383
1. provide each line of `/etc/exports` as an environment variable
@@ -87,21 +87,21 @@ Let's break that command down into its individual pieces to see what's required
8787
docker run \
8888
-e NFS_EXPORT_0='/nfs/foo *(ro,no_subtree_check)' \
8989
-e NFS_EXPORT_1='/nfs/bar 123.123.123.123/32(rw,no_subtree_check)' \
90-
... \
90+
... \
9191
erichough/nfs-server
9292

9393
1. bake `/etc/exports` into a custom image
9494

9595
e.g. in a `Dockerfile`:
9696

9797
```Dockerfile
98-
FROM ehough/nfs-server
98+
FROM erichough/nfs-server
9999
ADD /host/path/to/exports.txt /etc/exports
100100
```
101101

102102
1. **Use `--cap-add SYS_ADMIN` or `--privileged`**
103103

104-
As noted in the [requirements](#requirements), the container will need additional privileges. So your `run` command will need either:
104+
As noted in the [requirements](#requirements), the container will need additional privileges. So your `run` command will need *either*:
105105

106106
docker run --cap-add SYS_ADMIN ... erichough/nfs-server
107107

@@ -119,7 +119,7 @@ Let's break that command down into its individual pieces to see what's required
119119

120120
docker run -p 2049:2049 ... erichough/nfs-server
121121

122-
* If you need to support **NFSv3**, you'll need to expose a lot more ports:
122+
* If you'd like to support **NFSv3**, you'll need to expose a lot more ports:
123123

124124
docker run \
125125
-p 2049:2049 -p 2049:2049/udp \
@@ -138,7 +138,7 @@ If you pay close attention to each of the items in this section, the server shou
138138
## Optional Features
139139

140140
* [Kerberos security](doc/feature/kerberos.md)
141-
* [NFSv4 user ID mapping](doc/feature/nfsv4-user-id-mapping.md)
141+
* [NFSv4 user ID mapping](doc/feature/nfs4-user-id-mapping.md)
142142
* [AppArmor integration](doc/feature/apparmor.md)
143143

144144
## Advanced
@@ -162,4 +162,4 @@ Please [open an issue](https://github.com/ehough/docker-nfs-server/issues) if yo
162162
This work was based on prior projects:
163163
164164
- [f-u-z-z-l-e/docker-nfs-server](https://github.com/f-u-z-z-l-e/docker-nfs-server)
165-
- [sjiveson/nfs-server-alpine](https://github.com/sjiveson/nfs-server-alpine)
165+
- [sjiveson/nfs-server-alpine](https://github.com/sjiveson/nfs-server-alpine)

0 commit comments

Comments
 (0)