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, 944🔥, 0💬
Popular Posts:
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
How to build a test service operation to dump everything from the "context.Request" object in the re...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How to extend json.JSONEncoder class? I want to encode other Python data types to JSON. If you encod...