github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-pod-start.1.md (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  #### **--latest**, **-l**
    20  
    21  Instead of providing the pod name or ID, start the last created pod. (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
    22  
    23  #### **--pod-id-file**
    24  
    25  Read pod ID from the specified file and start the pod.  Can be specified multiple times.
    26  
    27  ## EXAMPLE
    28  
    29  Start pod with a given name
    30  ```
    31  podman pod start mywebserverpod
    32  ```
    33  
    34  Start pods with given IDs
    35  ```
    36  podman pod start 860a4b23 5421ab4
    37  ```
    38  
    39  Start the latest pod created by Podman
    40  ```
    41  podman pod start --latest
    42  ```
    43  
    44  Start all pods
    45  ```
    46  podman pod start --all
    47  ```
    48  
    49  Start pod using ID specified in a given file
    50  ```
    51  podman pod start --pod-id-file /path/to/id/file
    52  ```
    53  
    54  ## SEE ALSO
    55  **[podman(1)](podman.1.md)**, **[podman-pod(1)](podman-pod.1.md)**, **[podman-pod-stop(1)](podman-pod-stop.1.md)**
    56  
    57  ## HISTORY
    58  July 2018, Adapted from podman start man page by Peter Hunt <pehunt@redhat.com>