Skip to content

Commit a44ecfd

Browse files
committed
Fixed some typos. [skip ci]
1 parent f8ee2c9 commit a44ecfd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ docker run [-d] \
6767
```
6868
| Parameter | Description |
6969
|-----------|-------------|
70-
| -d | Run the container in background. If not set, the container runs in foreground. |
70+
| -d | Run the container in the background. If not set, the container runs in the foreground. |
7171
| -e | Pass an environment variable to the container. See the [Environment Variables](#environment-variables) section for more details. |
7272
| -v | Set a volume mapping (allows to share a folder/file between the host and the container). See the [Data Volumes](#data-volumes) section for more details. |
7373
| -p | Set a network port mapping (exposes an internal container port to the host). See the [Ports](#ports) section for more details. |
@@ -85,9 +85,9 @@ of this parameter has the format `<VARIABLE_NAME>=<VALUE>`.
8585
|`SUP_GROUP_IDS`| Comma-separated list of supplementary group IDs of the application. | (unset) |
8686
|`UMASK`| Mask that controls how file permissions are set for newly created files. The value of the mask is in octal notation. By default, this variable is not set and the default umask of `022` is used, meaning that newly created files are readable by everyone, but only writable by the owner. See the following online umask calculator: http://wintelguy.com/umask-calc.pl | (unset) |
8787
|`TZ`| [TimeZone] of the container. Timezone can also be set by mapping `/etc/localtime` between the host and the container. | `Etc/UTC` |
88-
|`KEEP_APP_RUNNING`| When set to `1`, the application will be automatically restarted if it crashes or if user quits it. | `0` |
88+
|`KEEP_APP_RUNNING`| When set to `1`, the application will be automatically restarted if it crashes or if a user quits it. | `0` |
8989
|`APP_NICENESS`| Priority at which the application should run. A niceness value of -20 is the highest priority and 19 is the lowest priority. By default, niceness is not set, meaning that the default niceness of 0 is used. **NOTE**: A negative niceness (priority increase) requires additional permissions. In this case, the container should be run with the docker option `--cap-add=SYS_NICE`. | (unset) |
90-
|`CLEAN_TMP_DIR`| When set to `1`, all files in the `/tmp` directory are delete during the container startup. | `1` |
90+
|`CLEAN_TMP_DIR`| When set to `1`, all files in the `/tmp` directory are deleted during the container startup. | `1` |
9191

9292
### Data Volumes
9393

@@ -180,7 +180,7 @@ docker rm nginx-proxy-manager
180180

181181
### Synology
182182

183-
For owners of a Synology NAS, the following steps can be use to update a
183+
For owners of a Synology NAS, the following steps can be used to update a
184184
container image.
185185

186186
1. Open the *Docker* application.

0 commit comments

Comments
 (0)