mirror of
https://github.com/containers/podman.git
synced 2025-06-02 02:26:52 +08:00
Switch to using --time as opposed to --timeout to better match Docker.
We need to consistently use --time rather then --timeout throughout the code. Fix locations where timeout defaults are not set correctly as well. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -27,7 +27,7 @@ Use the name of the container for the start, stop, and description in the unit f
|
||||
Create a new container via podman-run instead of starting an existing one. This option relies on container configuration files, which may not map directly to podman CLI flags; please review the generated output carefully before placing in production.
|
||||
Since we use systemd `Type=forking` service, using this option will force the container run with the detached param `-d`
|
||||
|
||||
**--timeout**, **-t**=*value*
|
||||
**--time**, **-t**=*value*
|
||||
|
||||
Override the default stop timeout for the container with the given value.
|
||||
|
||||
|
@ -27,7 +27,7 @@ Instead of providing the pod name or ID, stop the last created pod.
|
||||
|
||||
The latest option is not supported on the remote client.
|
||||
|
||||
**--timeout**, **-t**=*time*
|
||||
**--time**, **-t**=*time*
|
||||
|
||||
Timeout to wait before forcibly stopping the containers in the pod.
|
||||
|
||||
|
@ -46,7 +46,7 @@ ff6cf1e5e77e6dba1efc7f3fcdb20e8b89ad8947bc0518be1fcb2c78681f226f
|
||||
|
||||
Restart two containers by name with a timeout of 4 seconds
|
||||
```
|
||||
$ podman restart --timeout 4 test1 test2
|
||||
$ podman restart --time 4 test1 test2
|
||||
c3bb026838c30e5097f079fa365c9a4769d52e1017588278fa00d5c68ebc1502
|
||||
17e13a63081a995136f907024bcfe50ff532917988a152da229db9d894c5a9ec
|
||||
```
|
||||
|
@ -9,7 +9,7 @@ podman\-stop - Stop one or more running containers
|
||||
**podman container stop** [*options*] *container* ...
|
||||
|
||||
## DESCRIPTION
|
||||
Stops one or more containers. You may use container IDs or names as input. The **--timeout** switch
|
||||
Stops one or more containers. You may use container IDs or names as input. The **--time** switch
|
||||
allows you to specify the number of seconds to wait before forcibly stopping the container after the stop command
|
||||
is issued to the container. The default is 10 seconds. By default, containers are stopped with SIGTERM
|
||||
and then SIGKILL after the timeout. The SIGTERM default can be overridden by the image used to create the
|
||||
@ -54,7 +54,7 @@ $ podman stop --cidfile /home/user/cidfile-1
|
||||
|
||||
$ podman stop --cidfile /home/user/cidfile-1 --cidfile ./cidfile-2
|
||||
|
||||
$ podman stop --timeout 2 860a4b235279
|
||||
$ podman stop --time 2 860a4b235279
|
||||
|
||||
$ podman stop -a
|
||||
|
||||
|
Reference in New Issue
Block a user