English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Docker create command

Docker Command Reference

docker create :Create a new container without starting it

Usage same as docker run

Syntax

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

Syntax same as docker run

Online Examples

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

w3codebox@w3codebox:~$ docker create  --name myw3codebox  nginx:latest      
09b93464c2f75b7b69f83d56a9cfc23ceb50a48a9db7652ee4c27e3e2cb1961f

Docker Command Reference