> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/docker/docker-run.md).

# Docker Run (docker run)

`docker run`

> Run a command in a new container

## Usage

```bash
docker run {options} {image} {command} {ARG...}
```

## Example

```bash
azureuser@Azure:~$ docker run ubuntu echo "Hi there!"
Hi there!
```

***Source:*** [***Docker Docs***](https://docs.docker.com/engine/reference/commandline/run/)
