Docker stop: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://docs.docker.com/engine/reference/commandline/stop/ =Internal= * Client Operations =Overview= Stop a running contain...")
 
 
(10 intermediate revisions by the same user not shown)
Line 5: Line 5:
=Internal=
=Internal=


* [[Docker Client Operations#stop|Client Operations]]
* [[Docker_Client_Operations#Stop_a_Container|Container Lifecycle Operations]]


=Overview=
=Overview=


Stop a running container by sending SIGTERM and then SIGKILL after a grace period
Stop a running container by sending [[Linux_Signals#SIGTERM_.2815.29|SIGTERM]] and then [[Linux_Signals#SIGKILL_.289.29|SIGKILL]] after a grace period:
 
docker stop <''options''> <''container-id''> <''container-id''> ...
 
The stop command preserves the container's [[Docker_Concepts#Difference_Between_Containers_and_Images_-_a_Writable_Layer|writable layer]], so when the container is restarted with [[docker start]], the transient state preserved in the [[Docker_Concepts#Container_Image|container's image]] by the previous runs is not lost. That state is only lost when the container is deleted with [[docker rm]].
 
=Options=
 
==-t, --time==
 
Seconds to wait before killing the container (default 10 secs).

Latest revision as of 00:21, 10 February 2018

External

Internal

Overview

Stop a running container by sending SIGTERM and then SIGKILL after a grace period:

docker stop <options> <container-id> <container-id> ...

The stop command preserves the container's writable layer, so when the container is restarted with docker start, the transient state preserved in the container's image by the previous runs is not lost. That state is only lost when the container is deleted with docker rm.

Options

-t, --time

Seconds to wait before killing the container (default 10 secs).