Easy Tutorial
❮ Docker Install Centos Docker Tag Command ❯

Docker Create Command

Docker Command Manual


docker create: Create a new container without starting it

Usage is the same as docker run

Syntax

docker create [OPTIONS] IMAGE [COMMAND] [ARG...]

Syntax is the same as docker run

Example

Create a container using the nginx:latest image and name it mytutorialpro

tutorialpro@tutorialpro:~$ docker create --name mytutorialpro nginx:latest
09b93464c2f75b7b69f83d56a9cfc23ceb50a48a9db7652ee4c27e3e2cb1961f

Docker Command Manual

❮ Docker Install Centos Docker Tag Command ❯