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 createcommand (this is done to speed up container creation). -
Docker container has been created using
docker runbut it hasn’t been able to start successfully.
For further information check docker create reference: https://docs.docker.com/engine/reference/commandline/create/