Docker-DCO-1.1-Signed-off-by: Tibor Vass <teabee89@gmail.com> (github: tiborvass)
This commit is contained in:
Tibor Vass 2014-07-18 19:38:27 -05:00 committed by Tibor Vass
parent 5886a02980
commit 7786198ec8
1 changed files with 14 additions and 14 deletions

View File

@ -378,17 +378,17 @@ Creates a new container.
Usage: docker create [OPTIONS] IMAGE[:TAG] [COMMAND] [ARG...] Usage: docker create [OPTIONS] IMAGE[:TAG] [COMMAND] [ARG...]
-a, --attach=[] Attach to stdin, stdout or stderr. -a, --attach=[] Attach to STDIN, STDOUT, STDERR.
-c, --cpu-shares=0 CPU shares (relative weight) -c, --cpu-shares=0 CPU shares (relative weight)
--cidfile="" Write the container ID to the file --cidfile="" Write the container ID to the file
--dns=[] Set custom dns servers --dns=[] Set custom DNS servers
--dns-search=[] Set custom dns search domains --dns-search=[] Set custom DNS search domains
-e, --env=[] Set environment variables -e, --env=[] Set environment variables
--entrypoint="" Overwrite the default entrypoint of the image --entrypoint="" Overwrite the default entrypoint of the image
--env-file=[] Read in a line delimited file of ENV variables --env-file=[] Read in a line delimited file of environment variables
--expose=[] Expose a port from the container without publishing it to your host --expose=[] Expose a port from the container without publishing it to your host
-h, --hostname="" Container host name -h, --hostname="" Container host name
-i, --interactive=false Keep stdin open even if not attached -i, --interactive=false Keep `STDIN` open even if not attached
--link=[] Add link to another container (name:alias) --link=[] Add link to another container (name:alias)
--lxc-conf=[] (lxc exec-driver only) Add custom lxc options --lxc-conf="lxc.cgroup.cpuset.cpus = 0,1" --lxc-conf=[] (lxc exec-driver only) Add custom lxc options --lxc-conf="lxc.cgroup.cpuset.cpus = 0,1"
-m, --memory="" Memory limit (format: <number><optional unit>, where unit = b, k, m or g) -m, --memory="" Memory limit (format: <number><optional unit>, where unit = b, k, m or g)
@ -397,28 +397,28 @@ Creates a new container.
'bridge': creates a new network stack for the container on the docker bridge 'bridge': creates a new network stack for the container on the docker bridge
'none': no networking for this container 'none': no networking for this container
'container:<name|id>': reuses another container network stack 'container:<name|id>': reuses another container network stack
'host': use the host network stack inside the contaner 'host': use the host network stack inside the container
-p, --publish=[] Publish a container's port to the host -p, --publish=[] Publish a container's port to the host
format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort format: ip:hostPort:containerPort | ip::containerPort | hostPort:containerPort
(use 'docker port' to see the actual mapping) (use 'docker port' to see the actual mapping)
-P, --publish-all=false Publish all exposed ports to the host interfaces -P, --publish-all=false Publish all exposed ports to the host interfaces
--privileged=false Give extended privileges to this container --privileged=false Give extended privileges to this container
-t, --tty=false Allocate a pseudo-tty -t, --tty=false Allocate a pseudo-TTY
-u, --user="" Username or UID -u, --user="" Username or UID
-v, --volume=[] Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container) -v, --volume=[] Bind mount a volume (e.g. from the host: -v /host:/container, from docker: -v /container)
--volumes-from=[] Mount volumes from the specified container(s) --volumes-from=[] Mount volumes from the specified container(s)
-w, --workdir="" Working directory inside the container -w, --workdir="" Working directory inside the container
The `docker create` command `creates` a writeable container layer over The `docker create` command creates a writeable container layer over
the specified image, and prepares it for running the specified the specified image and prepares it for running the specified command.
command. The container id is then printed to stdout. This is similar The container ID is then printed to `STDOUT`.
to what `docker run -d <cli_run>`, does except the container is never This is similar to `docker run -d` except the container is never started.
started. You can then use the `docker start <cli_start>` command to You can then use the `docker start <container_id>` command to start the
start the container at any point. container at any point.
This is useful when you want to set up a container configuration ahead This is useful when you want to set up a container configuration ahead
of time, so that it is ready to start when you need it. of time so that it is ready to start when you need it.
### Example: ### Example: