Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 324 Bytes

File metadata and controls

20 lines (13 loc) · 324 Bytes

Docker Run (docker run)

docker run

Run a command in a new container

Usage

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

Example

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

Source: Docker Docs