名称

podman-pod-restart - 重启一个或多个 Pod

概要

podman pod restart [选项] pod

描述

重启一个或多个 Pod 中的容器。正在运行的容器将被停止并重启。已停止的容器将被启动。您可以使用 Pod ID 或名称作为输入。重启成功后将打印 Pod ID。当重启多个 Pod 时,重启一个 Pod 的错误不会影响其他 Pod 的重启。

选项

--all, -a

重启所有 Pod

--latest, -l

不提供 Pod 名称或 ID,重启最后创建的 Pod。(此选项在远程 Podman 客户端不可用,包括 Mac 和 Windows(不包括 WSL2)机器)

示例

重启具有给定名称的 Pod

podman pod restart mywebserverpod
cc8f0bea67b1a1a11aec1ecd38102a1be4b145577f21fc843c7c83b77fc28907

重启具有给定 ID 的多个 Pod

podman pod restart 490eb 3557fb
490eb241aaf704d4dd2629904410fe4aa31965d9310a735f8755267f4ded1de5
3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab

重启最后创建的 Pod

podman pod restart --latest
3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab

重启所有 Pod

podman pod restart --all
19456b4cd557eaf9629825113a552681a6013f8c8cad258e36ab825ef536e818
3557fbea6ad61569de0506fe037479bd9896603c31d3069a6677f23833916fab
490eb241aaf704d4dd2629904410fe4aa31965d9310a735f8755267f4ded1de5
70c358daecf71ef9be8f62404f926080ca0133277ef7ce4f6aa2d5af6bb2d3e9
cc8f0bea67b1a1a11aec1ecd38102a1be4b145577f21fc843c7c83b77fc28907

另请参见

podman(1), podman-pod(1), podman-restart(1)

历史

2018 年 7 月,最初由 Peter Hunt 编写 pehunt@redhat.com