.nh .TH podman\-stop(1) .SH NAME .PP podman\-stop \- Stop one or more running containers .SH SYNOPSIS .PP \fBpodman stop\fP [\fIoptions\fP] \fIcontainer\fP ... .PP \fBpodman container stop\fP [\fIoptions\fP] \fIcontainer\fP ... .SH DESCRIPTION .PP Stops one or more containers. You may use container IDs or names as input. The \fB\-\-time\fP 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 container and also via command line when creating the container. .SH OPTIONS .SS \fB\-\-all\fP, \fB\-a\fP .PP Stop all running containers. This does not include paused containers. .SS \fB\-\-cidfile\fP .PP Read container ID from the specified file and remove the container. Can be specified multiple times. .SS \fB\-\-ignore\fP, \fB\-i\fP .PP Ignore errors when specified containers are not in the container store. A user might have decided to manually remove a container which would lead to a failure during the ExecStop directive of a systemd service referencing that container. .SS \fB\-\-latest\fP, \fB\-l\fP .PP Instead of providing the container name or ID, use the last created container. If you use methods other than Podman to run containers such as CRI\-O, the last started container could be from either of those methods. .PP The latest option is not supported on the remote client. .SS \fB\-\-time\fP, \fB\-t\fP=\fItime\fP .PP Time to wait before forcibly stopping the container .SH EXAMPLES .PP $ podman stop mywebserver .PP $ podman stop 860a4b235279 .PP $ podman stop mywebserver 860a4b235279 .PP $ podman stop \-\-cidfile /home/user/cidfile\-1 .PP $ podman stop \-\-cidfile /home/user/cidfile\-1 \-\-cidfile ./cidfile\-2 .PP $ podman stop \-\-time 2 860a4b235279 .PP $ podman stop \-a .PP $ podman stop \-\-latest .SH SEE ALSO .PP podman(1), podman\-rm(1) .SH HISTORY .PP September 2018, Originally compiled by Brent Baude bbaude@redhat.com \[la]mailto:bbaude@redhat.com\[ra]