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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ docker run [-d] \
67
67
```
68
68
| Parameter | Description |
69
69
|-----------|-------------|
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. |
71
71
| -e | Pass an environment variable to the container. See the [Environment Variables](#environment-variables) section for more details. |
72
72
| -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. |
73
73
| -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>`.
85
85
|`SUP_GROUP_IDS`| Comma-separated list of supplementary group IDs of the application. | (unset) |
86
86
|`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) |
87
87
|`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`|
89
89
|`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`|
91
91
92
92
### Data Volumes
93
93
@@ -180,7 +180,7 @@ docker rm nginx-proxy-manager
180
180
181
181
### Synology
182
182
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
0 commit comments