mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b30609446d
Some frontmatter such as the weights, menu stuff, etc is no longer used 'draft=true' becomes 'published: false' Signed-off-by: Misty Stanley-Jones <misty@docker.com>
20 lines
446 B
Markdown
20 lines
446 B
Markdown
---
|
|
title: "stop"
|
|
description: "The stop command description and usage"
|
|
keywords: ["stop, SIGKILL, SIGTERM"]
|
|
---
|
|
|
|
# stop
|
|
|
|
```markdown
|
|
Usage: docker stop [OPTIONS] CONTAINER [CONTAINER...]
|
|
|
|
Stop one or more running containers
|
|
|
|
Options:
|
|
--help Print usage
|
|
-t, --time int Seconds to wait for stop before killing it (default 10)
|
|
```
|
|
|
|
The main process inside the container will receive `SIGTERM`, and after a grace
|
|
period, `SIGKILL`.
|