Tools, FAQ, Tutorials:
"docker container start/stop" - Start/Stop Container
How to start a stopped container on the Docker Engine with "docker container start/stop" command?
✍: FYIcenter.com
In order to use the "docker container start" or "docker start" command,
we need to know the container ID or name.
1. Get the ID or name of a stopped container from the output of the "docker container list --all" command:
fyicenter$ docker container list --all CONTAINER ID IMAGE COMMAND STATUS NAMES 96ce071457fc hello-world "/hello" Exited (0) 6 hours ago gallant_kepler ...
2. Start a container by name:
fyicenter$ docker container start gallant_kepler gallant_kepler fyicenter$ docker ps CONTAINER ID IMAGE COMMAND STATUS NAMES 96ce071457fc hello-world "/hello" Up 8 seconds gallant_kepler
3. Stop a container by ID:
fyicenter$ docker container stop 96ce071457fc 96ce071457fc fyicenter$ docker container list --all CONTAINER ID IMAGE COMMAND STATUS NAMES 96ce071457fc hello-world "/hello" Exited (0) 7 seconds ago gallant_kepler
As you can see, "docker container stop" command terminates the running command of the target container. The exit code of the running command is reported in the STATUS column like "Exited (0)".
And "docker container stop" command starts the running command again of the target container.
⇒ "docker container stop/kill" - Stop/Kill Container
⇐ "docker container list --all" - List All Containers
2019-06-04, 1256🔥, 0💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to access Query String parameters from "context.Request.Url.Que ry"object in Azure API Policy? Q...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
How to add request body examples to my Azure API operation to make it more user friendly? If you hav...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...