docker-latest-create (1) - Linux Man Pages
docker-latest-create: Create a new container
NAME
docker-create - Create a new container
SYNOPSIS
docker create [-a|--attach[=[]]] [--add-host[=[]]] [--blkio-weight[=[BLKIO-WEIGHT]]] [--blkio-weight-device[=[]]] [--cpu-shares[=0]] [--cap-add[=[]]] [--cap-drop[=[]]] [--cgroup-parent[=CGROUP-PATH]] [--cidfile[=CIDFILE]] [--cpu-period[=0]] [--cpu-quota[=0]] [--cpuset-cpus[=CPUSET-CPUS]] [--cpuset-mems[=CPUSET-MEMS]] [--device[=[]]] [--device-read-bps[=[]]] [--device-read-iops[=[]]] [--device-write-bps[=[]]] [--device-write-iops[=[]]] [--dns[=[]]] [--dns-search[=[]]] [--dns-opt[=[]]] [-e|--env[=[]]] [--entrypoint[=ENTRYPOINT]] [--env-file[=[]]] [--expose[=[]]] [--group-add[=[]]] [-h|--hostname[=HOSTNAME]] [--help] [-i|--interactive] [--ip[=IPv4-ADDRESS]] [--ip6[=IPv6-ADDRESS]] [--ipc[=IPC]] [--isolation[=default]] [--kernel-memory[=KERNEL-MEMORY]] [-l|--label[=[]]] [--label-file[=[]]] [--link[=[]]] [--link-local-ip[=[]]] [--log-driver[=[]]] [--log-opt[=[]]] [-m|--memory[=MEMORY]] [--mac-address[=MAC-ADDRESS]] [--memory-reservation[=MEMORY-RESERVATION]] [--memory-swap[=LIMIT]] [--memory-swappiness[=MEMORY-SWAPPINESS]] [--name[=NAME]] [--network-alias[=[]]] [--network[="bridge"]] [--oom-kill-disable] [--oom-score-adj[=0]] [-P|--publish-all] [-p|--publish[=[]]] [--pid[=[PID]]] [--userns[=[]]] [--pids-limit[=PIDS_LIMIT]] [--privileged] [--read-only] [--restart[=RESTART]] [--security-opt[=[]]] [--storage-opt[=[]]] [--stop-signal[=SIGNAL]] [--shm-size[=[]]] [--sysctl[=[]]] [-t|--tty] [--tmpfs[=[CONTAINER-DIR[:<OPTIONS>]]] [-u|--user[=USER]] [--ulimit[=[]]] [--uts[=[]]] [-v|--volume[=[[HOST-DIR:]CONTAINER-DIR[:OPTIONS]]]] [--volume-driver[=DRIVER]] [--volumes-from[=[]]] [-w|--workdir[=WORKDIR]] IMAGE [COMMAND] [ARG...]
DESCRIPTION
Creates a writeable container layer over the specified image and prepares it for running the specified command. The container ID is then printed to STDOUT. This is similar to docker run -d except the container is never started. You can then use the docker start <container_id> command to start the container at any point.
The initial status of the container created with docker create is 'created'.
OPTIONS
-a, --attach=[]
Attach to STDIN, STDOUT or STDERR.
--add-host=[]
Add a custom host-to-IP mapping
--blkio-weight=0
Block IO weight
--blkio-weight-device=[]
Block IO weight
--cpu-shares=0
CPU shares
--cap-add=[]
Add Linux capabilities
--cap-drop=[]
Drop Linux capabilities
--cgroup-parent=""
Path to cgroups under which the cgroup for the container will be created. If the path is not absolute, the path is considered to be relative to the cgroups path of the init process. Cgroups will be created if they do not already exist.
--cidfile=""
Write the container ID to the file
--cpu-period=0
--cpuset-cpus=""
CPUs in which to allow execution
--cpuset-mems=""
Memory nodes
If you have four memory nodes on your system (0-3), use --cpuset-mems=0,1 then processes in your Docker container will only use memory from the first two memory nodes.
--cpu-quota=0
Limit the CPU CFS
--device=[]
Add a host device to the container
--device-read-bps=[]
--device-read-iops=[]
--device-write-bps=[]
--device-write-iops=[]
--dns=[]
Set custom DNS servers
--dns-opt=[]
Set custom DNS options
--dns-search=[]
Set custom DNS search domains
-e, --env=[]
Set environment variables
--entrypoint=""
Overwrite the default ENTRYPOINT of the image
--env-file=[]
Read in a line-delimited file of environment variables
--expose=[]
Expose a port or a range of ports
--group-add=[]
Add additional groups to run as
-h, --hostname=""
Container host name
--help
-i, --interactive=true|false
Keep STDIN open even if not attached. The default is
--ip=""
Sets the container's interface IPv4 address
It can only be used in conjunction with --net for user-defined networks
--ip6=""
Sets the container's interface IPv6 address
It can only be used in conjunction with --net for user-defined networks
--ipc=""
Default is to create a private IPC namespace
--isolation="default"
Isolation specifies the type of isolation technology used by containers. Note
that the default on Windows server is process, and the default on Windows client
is hyperv. Linux only supports default.
--kernel-memory=""
Kernel memory limit
Constrains the kernel memory available to a container. If a limit of 0 is specified (not using --kernel-memory), the container's kernel memory is not limited. If you specify a limit, it may be rounded up to a multiple of the operating system's page size and the value can be very large, millions of trillions.
-l, --label=[]
Adds metadata to a container
--label-file=[]
Read labels from a file. Delimit each label with an EOL.
--link=[]
Add link to another container in the form of
<name or id>
--link-local-ip=[]
Add one or more link-local IPv4/IPv6 addresses to the container's interface
--log-driver="json-file|syslog|journald|gelf|fluentd|awslogs|splunk|etwlogs|gcplogs|none"
--log-opt=[]
-m, --memory=""
Memory limit
Allows you to constrain the memory available to a container. If the host supports swap memory, then the -m memory setting can be larger than physical RAM. If a limit of 0 is specified (not using -m), the container's memory is not limited. The actual limit may be rounded up to a multiple of the operating system's page size (the value would be very large, that's millions of trillions).
--mac-address=""
Container MAC address
--memory-reservation=""
Memory soft limit
After setting memory reservation, when the system detects memory contention or low memory, containers are forced to restrict their consumption to their reservation. So you should always set the value below --memory, otherwise the hard limit will take precedence. By default, memory reservation will be the same as memory limit.
--memory-swap="LIMIT"
A limit value equal to memory plus swap. Must be used with the
The format of LIMIT is <number>[<unit>]. Unit can be b (bytes), k (kilobytes), m (megabytes), or g (gigabytes). If you don't specify a unit, b is used. Set LIMIT to -1 to enable unlimited swap.
--memory-swappiness=""
Tune a container's memory swappiness behavior. Accepts an integer between 0 and 100.
--name=""
Assign a name to the container
--net="bridge"
Set the Network mode for the container
--network-alias=[]
Add network-scoped alias for the container
--oom-kill-disable=true|false
--oom-score-adj=""
-P, --publish-all=true|false
Publish all exposed ports to random ports on the host interfaces. The default is
-p, --publish=[]
Publish a container's port, or a range of ports, to the host
--pid=""
Set the PID mode for the container
Default is to create a private PID namespace for the container
--userns=""
Set the usernamespace mode for the container when userns-remap option is enabled.
--pids-limit=""
Tune the container's pids limit. Set -1 to have unlimited pids for the container.
--privileged=true|false
Give extended privileges to this container. The default is
--read-only=true|false
Mount the container's root filesystem as read only.
--restart="no"
Restart policy to apply when a container exits
--shm-size=""
Size of
Unit is optional and can be b
If you omit the size entirely, the system uses 64m.
--security-opt=[]
Security Options
"label:user:USER" : Set the label user for the container
--storage-opt=[]
Storage driver options per container
$ docker create -it --storage-opt size=120G fedora /bin/bash
This (size) will allow to set the container rootfs size to 120G at creation time. User cannot pass a size less than the Default BaseFS Size.
This option is only available for the devicemapper, btrfs, and zfs graph drivers.
--stop-signal=SIGTERM
--sysctl=SYSCTL
IPC Namespace - current sysctls allowed:
kernel.msgmax, kernel.msgmnb, kernel.msgmni, kernel.sem, kernel.shmall, kernel.shmmax, kernel.shmmni, kernel.shm_rmid_forced
Note: if you use --ipc=host using these sysctls will not be allowed.
Network Namespace - current sysctls allowed:
Sysctls beginning with net.*
Note: if you use --net=host using these sysctls will not be allowed.
-t, --tty=true|false
Allocate a pseudo-TTY. The default is
--tmpfs=[] Create a tmpfs mount
Mount a temporary filesystem (tmpfs) mount into a container, for example:
$ docker run -d --tmpfs /tmp:rw,size=787448k,mode=1777 my_image
This command mounts a tmpfs at /tmp within the container. The supported mount options are the same as the Linux default mount flags. If you do not specify any options, the systems uses the following options: rw,noexec,nosuid,nodev,size=65536k.
-u, --user=""
Username or UID
--ulimit=[]
Ulimit options
--uts=host
Set the UTS mode for the container
-v|--volume[=[[HOST-DIR:]CONTAINER-DIR[:OPTIONS]]]
Create a bind mount. If you specify, -v
bind mounts
container. If
volume on the host.
- step]
-
item [rw|ro] item [z|Z] item [[r]shared|[r]slave|[r]private]
The CONTAINER-DIR must be an absolute path such as /src/docs. The HOST-DIR can be an absolute path or a name value. A name value must start with an alphanumeric character, followed by a-z0-9, _ (underscore), . (period) or - (hyphen). An absolute path starts with a / (forward slash).
If you supply a HOST-DIR that is an absolute path, Docker bind-mounts to the path you specify. If you supply a name, Docker creates a named volume by that name. For example, you can specify either /foo or foo for a HOST-DIR value. If you supply the /foo value, Docker creates a bind-mount. If you supply the foo specification, Docker creates a named volume.
You can specify multiple -v options to mount one or more mounts to a container. To use these same mounts in other containers, specify the --volumes-from option also.
You can add :ro or :rw suffix to a volume to mount it read-only or read-write mode, respectively. By default, the volumes are mounted read-write. See examples.
Labeling systems like SELinux require that proper labels are placed on volume content mounted into a container. Without a label, the security system might prevent the processes running inside the container from using the content. By default, Docker does not change the labels set by the OS.
To change a label in the container context, you can add either of two suffixes :z or :Z to the volume mount. These suffixes tell Docker to relabel file objects on the shared volumes. The z option tells Docker that two containers share the volume content. As a result, Docker labels the content with a shared content label. Shared volume labels allow all containers to read/write content. The Z option tells Docker to label the content with a private unshared label. Only the current container can use a private volume.
By default bind mounted volumes are private. That means any mounts done inside container will not be visible on host and vice-a-versa. One can change this behavior by specifying a volume mount propagation property. Making a volume shared mounts done under that volume inside container will be visible on host and vice-a-versa. Making a volume slave enables only one way mount propagation and that is mounts done on host under that volume will be visible inside container but not the other way around.
To control mount propagation property of volume one can use :[r]shared, :[r]slave or :[r]private propagation flag. Propagation property can be specified only for bind mounted volumes and not for internal volumes or named volumes. For mount propagation to work source mount point (mount point where source dir is mounted on) has to have right propagation properties. For shared volumes, source mount point has to be shared. And for slave volumes, source mount has to be either shared or slave.
Use df <source-dir> to figure out the source mount and then use findmnt -o TARGET,PROPAGATION <source-mount-dir> to figure out propagation properties of source mount. If findmnt utility is not available, then one can look at mount entry for source mount point in /proc/self/mountinfo. Look at optional fields and see if any propagaion properties are specified. shared:X means mount is shared, master:X means mount is slave and if nothing is there that means mount is private.
To change propagation properties of a mount point use mount command. For example, if one wants to bind mount source directory /foo one can do mount --bind /foo /foo and mount --make-private --make-shared /foo. This will convert /foo into a shared mount point. Alternatively one can directly change propagation properties of source mount. Say / is source mount for /foo, then use mount --make-shared / to convert / into a shared mount.
-
Note: When using systemd to manage the Docker daemon's start and stop, in the systemd unit file there is an option to control mount propagation for the Docker daemon itself, called MountFlags. The value of this setting may cause Docker to not see mount propagation changes made on the mount point. For example, if this value is slave, you may not be able to use the shared or rshared propagation on a volume.
To disable automatic copying of data from the container path to the volume, use the nocopy flag. The nocopy flag can be set on bind mounts and named volumes.
--volume-driver=""
Container's volume driver. This driver creates volumes specified either from
a Dockerfile's VOLUME instruction or from the docker run -v flag.
See
--volumes-from=[]
Mount volumes from the specified container(s)
-w, --workdir=""
Working directory inside the container
EXAMPLES
Specify isolation technology for container (--isolation)
This option is useful in situations where you are running Docker containers on Windows. The --isolation=<value> option sets a container's isolation technology. On Linux, the only supported is the default option which uses Linux namespaces. On Microsoft Windows, you can specify these values:
- step]
-
item default: Use the value specified by the Docker daemon's --exec-opt . If the daemon does not specify an isolation technology, Microsoft Windows uses process as its default value. item process: Namespace isolation only. item hyperv: Hyper-V hypervisor partition-based isolation.
Specifying the --isolation flag without a value is the same as setting --isolation="default".
HISTORY
August 2014, updated by Sven Dowideit <SvenDowideit [at] home.org.au> September 2014, updated by Sven Dowideit <SvenDowideit [at] home.org.au> November 2014, updated by Sven Dowideit <SvenDowideit [at] home.org.au>