Files
docker-docs/_data/engine-cli/docker_stop.yaml
Sebastiaan van Stijn d62fa28810 engine: update reference docs for 23.0.0
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-02-01 20:29:56 +01:00

55 lines
1.4 KiB
YAML

command: docker stop
aliases: docker container stop, docker stop
short: Stop one or more running containers
long: |-
The main process inside the container will receive `SIGTERM`, and after a grace
period, `SIGKILL`. The first signal can be changed with the `STOPSIGNAL`
instruction in the container's Dockerfile, or the `--stop-signal` option to
`docker run`.
usage: docker stop [OPTIONS] CONTAINER [CONTAINER...]
pname: docker
plink: docker.yaml
options:
- option: signal
shorthand: s
value_type: string
description: Signal to send to the container
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
- option: time
shorthand: t
value_type: int
default_value: "0"
description: Seconds to wait before killing the container
deprecated: false
hidden: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
inherited_options:
- option: help
value_type: bool
default_value: "false"
description: Print usage
deprecated: false
hidden: true
experimental: false
experimentalcli: false
kubernetes: false
swarm: false
examples: |-
```console
$ docker stop my_container
```
deprecated: false
experimental: false
experimentalcli: false
kubernetes: false
swarm: false