mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Added documentation for specifying groupname or GID for commands. Also clarified used of the possible use of multiple USER commands in a Dockerfile.
Signed-off-by: Dan Anolik <dan@anolik.net>
This commit is contained in:
parent
e6b7d93072
commit
a57d7c5c79
2 changed files with 15 additions and 3 deletions
|
@ -273,8 +273,15 @@ A Dockerfile is similar to a Makefile.
|
||||||
|
|
||||||
**USER**
|
**USER**
|
||||||
-- `USER daemon`
|
-- `USER daemon`
|
||||||
The **USER** instruction sets the username or UID that is used when running the
|
Sets the username or UID used for running subsequent commands.
|
||||||
image.
|
|
||||||
|
The **USER** instruction can optionally be used to set the group or GID. The
|
||||||
|
followings examples are all valid:
|
||||||
|
USER [user | user:group | uid | uid:gid | user:gid | uid:group ]
|
||||||
|
|
||||||
|
Until the **USER** instruction is set, instructions will be run as root. The USER
|
||||||
|
instruction can be used any number of times in a Dockerfile, and will only affect
|
||||||
|
subsequent commands.
|
||||||
|
|
||||||
**WRKDIR**
|
**WRKDIR**
|
||||||
-- `WORKDIR /path/to/workdir`
|
-- `WORKDIR /path/to/workdir`
|
||||||
|
|
|
@ -341,7 +341,12 @@ The **-t** option is incompatible with a redirection of the docker client
|
||||||
standard input.
|
standard input.
|
||||||
|
|
||||||
**-u**, **--user**=""
|
**-u**, **--user**=""
|
||||||
Username or UID
|
Sets the username or UID used and optionally the groupname or GID for the specified command.
|
||||||
|
|
||||||
|
The followings examples are all valid:
|
||||||
|
--user [user | user:group | uid | uid:gid | user:gid | uid:group ]
|
||||||
|
|
||||||
|
Without this argument the command will be run as root in the container.
|
||||||
|
|
||||||
**-v**, **--volume**=[]
|
**-v**, **--volume**=[]
|
||||||
Bind mount a volume (e.g., from the host: -v /host:/container, from Docker: -v /container)
|
Bind mount a volume (e.g., from the host: -v /host:/container, from Docker: -v /container)
|
||||||
|
|
Loading…
Add table
Reference in a new issue