What is diff docker between start and docker run?
What is diff docker between start and docker run?
docker run = Create + Start
docker start = Just Start the existing container
**docker run:- ** When we run Docker run command it takes a fresh image form docker registry, clone or builds a new container, and starts it right away.
**docker start:- ** Docker start command will work on the existing container which is generally stopped. Basically it resumes a container that you already created earlier which is already in stop condition.