2016-10-14 18:30:36 -04:00
|
|
|
|
---
|
|
|
|
|
title: "kill"
|
|
|
|
|
description: "The kill command description and usage"
|
2016-11-03 18:48:30 -04:00
|
|
|
|
keywords: "container, kill, signal"
|
2016-10-14 18:30:36 -04:00
|
|
|
|
---
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
|
|
|
|
# kill
|
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
|
```markdown
|
|
|
|
|
Usage: docker kill [OPTIONS] CONTAINER [CONTAINER...]
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
2016-07-29 13:41:52 -04:00
|
|
|
|
Kill one or more running containers
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
|
Options:
|
|
|
|
|
--help Print usage
|
|
|
|
|
-s, --signal string Signal to send to the container (default "KILL")
|
|
|
|
|
```
|
2015-06-21 16:41:38 -04:00
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
|
## Description
|
|
|
|
|
|
2017-06-29 04:18:06 -04:00
|
|
|
|
The `docker kill` subcommand kills one or more containers. The main process
|
|
|
|
|
inside the container is sent `SIGKILL` signal (default), or the signal that is
|
|
|
|
|
specified with the `--signal` option. You can kill a container using the
|
|
|
|
|
container's ID, ID-prefix, or name.
|
2015-10-28 14:06:21 -04:00
|
|
|
|
|
2020-04-19 09:43:08 -04:00
|
|
|
|
> **Note**
|
|
|
|
|
>
|
|
|
|
|
> `ENTRYPOINT` and `CMD` in the *shell* form run as a child process of
|
2017-02-07 18:42:48 -05:00
|
|
|
|
> `/bin/sh -c`, which does not pass signals. This means that the executable is
|
|
|
|
|
> not the container’s PID 1 and does not receive Unix signals.
|
2017-06-29 04:18:06 -04:00
|
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Send a KILL signal to a container
|
|
|
|
|
|
|
|
|
|
The following example sends the default `KILL` signal to the container named
|
|
|
|
|
`my_container`:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ docker kill my_container
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Send a custom signal to a container
|
|
|
|
|
|
|
|
|
|
The following example sends a `SIGHUP` signal to the container named
|
|
|
|
|
`my_container`:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ docker kill --signal=SIGHUP my_container
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
You can specify a custom signal either by _name_, or _number_. The `SIG` prefix
|
|
|
|
|
is optional, so the following examples are equivalent:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ docker kill --signal=SIGHUP my_container
|
|
|
|
|
$ docker kill --signal=HUP my_container
|
|
|
|
|
$ docker kill --signal=1 my_container
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Refer to the [`signal(7)`](http://man7.org/linux/man-pages/man7/signal.7.html)
|
|
|
|
|
man-page for a list of standard Linux signals.
|