github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/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.
    22  
    23  The latest option is not supported on the remote client.
    24  
    25  #### **--pod-id-file**
    26  
    27  Read pod ID from the specified file and start the pod.  Can be specified multiple times.
    28  
    29  ## EXAMPLE
    30  
    31  podman pod start mywebserverpod
    32  
    33  podman pod start 860a4b23 5421ab4
    34  
    35  podman pod start --latest
    36  
    37  podman pod start --all
    38  
    39  podman pod start --pod-id-file /path/to/id/file
    40  
    41  ## SEE ALSO
    42  podman-pod(1), podman-pod-stop(1), podman-start(1)
    43  
    44  ## HISTORY
    45  July 2018, Adapted from podman start man page by Peter Hunt <pehunt@redhat.com>