github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/podman-pod-start.1.md.in (about)

     1  % podman-pod-start 1
     2  
     3  ## NAME
     4  podman\-pod\-start - Start one or more pods
     5  
     6  ## SYNOPSIS
     7  **podman pod start** [*options*] *pod* ...
     8  
     9  ## DESCRIPTION
    10  Start containers in one or more pods.  You may use pod IDs or names as input. The pod must have a container attached
    11  to be started.
    12  
    13  ## OPTIONS
    14  
    15  #### **--all**, **-a**
    16  
    17  Starts all pods
    18  
    19  @@option latest
    20  
    21  @@option pod-id-file.pod
    22  
    23  ## EXAMPLE
    24  
    25  Start pod with a given name:
    26  ```
    27  podman pod start mywebserverpod
    28  ```
    29  
    30  Start pods with given IDs:
    31  ```
    32  podman pod start 860a4b23 5421ab4
    33  ```
    34  
    35  Start the latest pod. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines):
    36  ```
    37  podman pod start --latest
    38  ```
    39  
    40  Start all pods:
    41  ```
    42  podman pod start --all
    43  ```
    44  
    45  Start pod using ID specified in a given file:
    46  ```
    47  podman pod start --pod-id-file /path/to/id/file
    48  ```
    49  
    50  ## SEE ALSO
    51  **[podman(1)](podman.1.md)**, **[podman-pod(1)](podman-pod.1.md)**, **[podman-pod-stop(1)](podman-pod-stop.1.md)**
    52  
    53  ## HISTORY
    54  July 2018, Adapted from podman start man page by Peter Hunt <pehunt@redhat.com>