Docker status Created
means that the container has been created from the image, but it has never been started.
This state can be achieved in this two ways.
-
Docker container has been created using
docker create
command (this is done to speed up container creation). -
Docker container has been created using
docker run
but it hasn’t been able to start successfully.
For further information check docker create
reference: https://docs.docker.com/engine/reference/commandline/create/