docker run Command: Syntax, Options, Examples

Introduction

The docker run command lets you create and execute OCI-compatible containers using container images. Additionally, appending attributes to the command's basic syntax allows the user to customize container storage, networking, performance, and other settings.

In this tutorial, you will learn how to use the docker run command with practical examples. 

How to use the docker run command with examples.

Prerequisites

docker run Syntax

docker run is an alias for the docker container run command. In its most basic form, the command requires only one argument, i.e., an image reference that Docker uses as a template for building and running a container:

docker run [image]

For example, executing the following command runs a container based on the hello-world image:

docker run hello-world

When the user runs the command, Docker starts the container that runs the hello-world app and stops it once the app is executed.

The output from a container running the hello-world app.

docker run can be customized with options and commands. Options modify the container properties while commands are executed inside the container. The following is the order of these elements within the docker run command:

docker run [options] [image] [commands]

For example, the command below runs an Ubuntu container labeled test. Inside the container, docker run executes an echo command that prints the sentence "This is a test."

docker run -l test ubuntu echo "This is a test."
Executing a command inside a container using docker run.

docker run Options

docker run features many options that extend its functionality. The following sections present the command options sorted according to which aspect of the container they customize.

General Options

General docker run options help with basic image and container management. The table below explains each option in more detail:

OptionDescription
--nameGive a custom name to a container.
-d, --detachRun container as a background process.
--entrypointSet a custom entry point for an image.
--helpShow help.
-i, --interactiveKeep standard input open.
--pullPull the image before creating a container.
--platformSet platform (for multi-platform servers).
--restartSet container restart policy.
--rmRemove the container when it exits.
--runtimeSet runtime to use for a container.
-t, --ttyAllocate a pseudo-TTY.
--workdirSet a working directory in a container.

Networking Options

The networking options allow the user to set up connectivity between a container and a network. Refer to the list below for the available options:

OptionDescription
--add-hostCreate a custom host-to-IP mapping.
--hostnameDefine a hostname for a container.
--dnsSet a custom DNS server.
--dns-searchSet a custom DNS search domain.
--dns-optionSet a DNS option.
--ipSet an IPv4 address for a container.
--ip6Set an IPv6 address for a container.
--linkLink to another container.
--link-local-ipLink a local IPv4/IPv6 address.
--mac-addressSet a MAC address for a container.
--networkConnect a container to a network.
-p, --publishPublish a container port to a host.
-P, --publish-allPublish all exposed ports to random ports.

Storage Options

The following options configure Docker volumes and mounts for containers that require storage:

OptionDescription
--mountAttach a filesystem mount.
--read-onlyMount the container filesystem as read-only.
--tmpfsMount a directory formatted as tmpfs.
-v, --volumeBind mount a volume.

Resource Management Options

The docker run command allows the user to control resources a running container can utilize. The available resource management options are listed below:

OptionDescription
--cpusSet the number of CPUs.
--cpuset-cpusSet CPUs where execution is allowed.
--cpuset-memsSet MEMs where execution is allowed.
--cpu-periodLimit CFS period for CPUs.
--cpu-quotaLimit CFS quota for CPUs.
--cpu-sharesSet the number of CPU shares.
--kernel-memoryLimit kernel memory.
-m, --memorySet a memory limit.
--memory-swapSet the swap limit equal to memory and swap combined. The value of -1 enables unlimited swap.
--memory-swappinessControl memory swappiness.
--oom-kill-disableDisable OOM Killer.
--oom-score-adjSet OOM preferences.
--pids-limitSet pids limit for a container. The value of -1 allows unlimited pids.

Security Options

The docker run command allows a user to enable and disable Docker security features, control users, and set user privileges. The following are the available security options:

OptionDescription
--cap-addEnable specific Linux security features.
--cap-dropDisable specific Linux security features.
--group-addAdd additional groups.
--no-new-privilegesPrevent container processes from obtaining new privileges.
--privilegedSet extended privileges for a container.
--security-optEnable security options.
--userSet the user.
--usernsSet the user namespace.

Note: Using the --privileged option to run privileged Docker containers can be practical, but it comes with potential security risks. Learn more about this topic in our guide to privileged docker containers

Environment Options

Use the options below to set up environment variables and container metadata:

OptionDescription
-e, --envSet an environment variable.
--env-fileSupply a file with environment variables.
--labelSet container metadata.
--label-fileSupply a line-delimited file with labels.

Container Health Options

Container health options include health check reporting and health monitoring customization. Refer to the table below to learn how to configure health checks using docker run options:

OptionDescription
--health-cmdProvide a health check command.
--health-intervalSet the health check interval.
--health-retriesSet the number of attempts before the container is reported as unhealthy.
--health-start-periodProvide the length of a period for the container to initialize before starting health checks.
--health-timeoutSet the maximum time for the health check.

Additional Options

Aside from the features listed in the categories above, docker run also includes options related to Docker container logs, GPU configuration, and device management. The table below lists those options:

OptionDescription
--detach-keysSet a custom key sequence for detaching a container.
--deviceAdd the host device.
--gpusAdd a GPU device to a container. Passing all as an argument adds all the available GPUs.
--initRun an init inside a container.
--isolationSet container isolation technology.
--log-driverSet the container's logging driver.
--log-optConfigure the logging driver's options.

docker run Examples

The docker run command and its options offer flexibility when starting and executing Docker containers. The examples below illustrate how docker run can be customized for different usage scenarios.

Run Container Under Specific Name

The --name option lets you assign a custom container name. However, if the option is left out, Docker automatically generates a container name consisting of two random words.

The following command assigns a custom name to the container:

docker run --name [container-name] [image]

For example, type the following command to run a container called test-container using the hello-world image:

docker run --name test-container hello-world

To confirm that the container was created, view the list of all the containers on the system:

docker ps -a

The named container appears in the output.

Viewing all the containers created on the system.

Since remembering generic names can be difficult in multi-container deployments, creating custom container names is recommended.

Run Container in Background (Detached Mode)

There are two ways of running a container – in the foreground (attached mode) or in the background (detached mode). By default, Docker runs containers in attached mode, i.e., the running container takes over the terminal window, making it unusable for issuing host system commands.

Run the container in the background using the -d option to keep the container and current terminal session separate. The detached mode also allows the user to exit the terminal session without stopping the container.

The command for running a container in the background is:

docker run -d [image]

The following example runs a container based on the hello-world image in the detached mode.

docker run -d hello-world

Docker prints the container ID in the output and exits to the shell prompt. The container runs in the background and stops without displaying any output in the terminal session.

Running a container based on the hello-world image in the detached mode.

Run Container Interactively

Docker provides a way to execute commands inside the container. In interactive mode, the user can access a shell prompt inside the running container.

Activate the interactive mode by adding the -i and -t options to the docker run command:

docker run -it [image] [command-or-shell]

Replace [command-or-shell] with a command to execute inside the container. Alternatively, provide the path to an interactive shell to access it and enable executing multiple consecutive commands on the same container.

For example, the command below runs an Ubuntu container and opens a Bash shell prompt inside it:

docker run -it ubuntu /bin/bash

Docker runs the container and displays the Bash shell. The commands executed in the shell will affect the system inside the Docker container.

Opening a Bash shell inside an Ubuntu container.

Exit the interactive session by typing exit and pressing Enter.

Run Container and Publish Container Ports

A running container is an isolated, self-sufficient unit whose processes are accessible only from within. To allow external connections to the container, publish a container port and connect it to a host port using the -p option, as shown below:

docker run -p [host-port]:[container-port] [image]

For example, execute the following command to run a container based on the nginx:latest image, and map container port 80 to host port 8080:

docker run -p 8080:80 nginx:latest
Mapping an internal Docker container port to an external host system port.

Use the lsof command to check port 8080 on the host system:

sudo lsof -i:8080

The output shows that a Docker process uses port 8080.

The lsof command output shows that port 8080 is used by a Docker process.

Run Container and Mount Host Volumes

As soon as the container stops running, all the changes are deleted since Docker containers do not store user-created data. Therefore, enable storage volumes to make data persist after the container stops.

To mount a volume, use the -v option and specify the location of the directory that will store the data. Furthermore, provide the path to a directory that will be used to access the stored data from inside the container:

docker run -v [path-on-host]:[path-inside-container] [image]

For example, the command below runs an Ubuntu container in the interactive mode. The /home/marko/test directory is mounted to the test-volume directory inside the container.

docker run -it -v /home/marko/test:/test-volume ubuntu

Once Docker successfully starts the container, the shell prompt appears. To conclude, list the contents of the root directory using the ls command:

ls

The test-volume directory appears in the list.

The directory created with the docker run -v option showing in the root directory of the container.

Run Docker Container and Remove it Once the Process is Complete

The Docker container stops once it executes its tasks and all the modifications are removed. However, the container's file system remains on the host, taking up space.

If you only need a container to execute a single task and have no use for it or its file system afterward, use the --rm option to remove it when it stops:

docker run --rm [image]

The following example runs a container named rm-test based on the hello-world image and sets the --rm option.

docker run --name rm-test --rm hello-world

Once the container stops, use the following command to list all the containers on the system:

docker ps -a

The output shows an empty list, confirming that Docker removed the container once all its processes were finished.

An empty list of containers on the host system.

Note: Want to remove other unnecessary containers from the system? Check out our guide on how to remove Docker containers, images, networks, and volumes.

Conclusion

This tutorial introduced the docker run command and provided a comprehensive list of its options. The article demonstrated how docker run can be customized to suit specific container deployments through several examples.

If you are new to Docker, check out our Docker Commands Cheat Sheet and use this resource to improve your Docker CLI skills.

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
How to List / Start / Stop Docker Containers
May 27, 2019

A Docker container uses an image of a preconfigured operating system environment. Images are often...
Read more
How to Set Up and Use Private Docker Registry
March 21, 2024

By setting up a private Docker registry, you can save valuable resources and speed up development processes...
Read more
Docker Image Size - How to Keep It Small?
April 10, 2024

Docker images can easily become too large to handle, which is why it is important to keep their size under...
Read more
Docker CMD vs Entrypoint Commands: What's the Difference?
February 18, 2020

CMD is Docker instruction used if you need a default command which users can easily override. ENTRYPOINT is...
Read more