2015-06-21 16:41:38 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "kill"
|
|
|
|
description = "The kill command description and usage"
|
|
|
|
keywords = ["container, kill, signal"]
|
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# kill
|
|
|
|
|
|
|
|
Usage: docker kill [OPTIONS] CONTAINER [CONTAINER...]
|
|
|
|
|
|
|
|
Kill a running container using SIGKILL or a specified signal
|
|
|
|
|
2015-10-03 11:56:41 -04:00
|
|
|
--help=false Print usage
|
2015-06-21 16:41:38 -04:00
|
|
|
-s, --signal="KILL" Signal to send to the container
|
|
|
|
|
|
|
|
The main process inside the container will be sent `SIGKILL`, or any
|
|
|
|
signal specified with option `--signal`.
|