NAME 名称

podman-pod-start - Start one or more pods
podman-pod-start - 启动一个或多个 pod

SYNOPSIS 概要

podman pod start [options] pod
podman pod start [选项] pod ...

DESCRIPTION 描述

Start containers in one or more pods. You may use pod IDs or names as input. The pod must have a container attached to be started.
启动一个或多个 pod 中的容器。您可以使用 pod 的 ID 或名称作为输入。要启动 pod,必须附加一个容器。

OPTIONS 选项

--all, -a

Starts all pods 启动所有的 Pod

--latest, -l

Instead of providing the pod name or ID, use the last created pod. Note: the last started pod can be from other users of Podman on the host machine. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
而不是提供 Pod 名称或 ID,请使用最后创建的 Pod。注意:最后启动的 Pod 可能来自主机上其他 Podman 用户。(此选项不适用于远程 Podman 客户端,包括 Mac 和 Windows(不包括 WSL2)机器)

--pod-id-file=file

Read pod ID from the specified file and start the pod. Can be specified multiple times.
从指定文件中读取 Pod ID 并启动 Pod。可以多次指定。

EXAMPLE 例子 ¶

Start pod with a given name:
使用给定名称启动 Pod:

podman pod start mywebserverpod

Start pods with given IDs:
使用给定的 ID 启动 pods:

podman pod start 860a4b23 5421ab4

Start the latest pod. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines):
启动最新的 pod。(此选项不适用于远程 Podman 客户端,包括 Mac 和 Windows(不包括 WSL2)机器):

podman pod start --latest

Start all pods: 启动所有 pods:

podman pod start --all

Start pod using ID specified in a given file:
使用指定文件中的 ID 启动 pod:

podman pod start --pod-id-file /path/to/id/file

SEE ALSO 参见 ¶

podman(1), podman-pod(1), podman-pod-stop(1)

HISTORY 历史 ¶

July 2018, Adapted from podman start man page by Peter Hunt pehunt@redhat.com
2018 年 7 月,由 Peter Hunt pehunt@redhat.com 改编自 podman 启动手册页面