Browse code

reference/run: Some editorial changes

Based on the suggestions from @moxiegirl, some changes to make the wording more clear.

Signed-off-by: Kai Blin <kai@samba.org>

Kai Blin authored on 2015/08/18 15:56:56
Showing 1 changed files
... ...
@@ -1142,16 +1142,17 @@ volume mounted on the host).
1142 1142
 
1143 1143
 ### USER
1144 1144
 
1145
-The default user within a container is `root` (id = 0), but if the developer
1146
-created additional users, those are accessible by name.  When passing a numeric
1147
-ID, the user doesn't have to exist in the container.
1145
+`root` (id = 0) is the default user within a container. The image developer can
1146
+create additional users. Those users are accessible by name.  When passing a numeric
1147
+ID, the user does not have to exist in the container.
1148 1148
 
1149 1149
 The developer can set a default user to run the first process with the
1150
-Dockerfile `USER` instruction, but the operator can override it:
1150
+Dockerfile `USER` instruction. When starting a container, the operator can override
1151
+the `USER` instruction by passing the `-u` option.
1151 1152
 
1152 1153
     -u="": Username or UID
1153 1154
 
1154
-> **Note:** if you pass a numeric uid, it must be in the range 0-2147483647.
1155
+> **Note:** if you pass a numeric uid, it must be in the range of 0-2147483647.
1155 1156
 
1156 1157
 ### WORKDIR
1157 1158