Difference between Running and Starting a Docker container

后端 未结 6 1350
你的背包
你的背包 2020-12-12 08:39

In practice to start a container I do:

docker run a8asd8f9asdf0

If thats the case, what does:

docker start         


        
6条回答
  •  臣服心动
    2020-12-12 09:20

    run - Create a container using image and Start the same. (Create & Start)

    start - Start the container(s) in docker list which was in stopped state.

提交回复
热议问题