github.com/rkt/rkt@v1.30.1-0.20200224141603-171c416fac02/Documentation/subcommands/list.md (about)

     1  # rkt list
     2  
     3  You can list all rkt pods.
     4  
     5  ```
     6  $ rkt list
     7  UUID        APP     IMAGE NAME               STATE      CREATED        STARTED         NETWORKS
     8  5bc080ca    redis   redis                    running    2 minutes ago  41 seconds ago  default:ip4=172.16.28.7
     9              etcd    coreos.com/etcd:v2.0.9
    10  3089337c    nginx   nginx                    exited     9 minutes ago  2 minutes ago
    11  ```
    12  
    13  You can view the full UUID as well as the image's ID by using the `--full` flag.
    14  
    15  ```
    16  $ rkt list --full
    17  UUID                                   APP     IMAGE NAME              IMAGE ID              STATE      CREATED                             STARTED                             NETWORKS
    18  5bc080cav-9e03-480d-b705-5928af396cc5  redis   redis                   sha512-91e98d7f1679   running    2016-01-25 17:42:32.563 +0100 CET   2016-01-25 17:44:05.294 +0100 CET   default:ip4=172.16.28.7
    19                                         etcd    coreos.com/etcd:v2.0.9  sha512-a03f6bad952b
    20  3089337c4-8021-119b-5ea0-879a7c694de4  nginx   nginx                   sha512-32ad6892f21a   exited     2016-01-25 17:36:40.203 +0100 CET   2016-01-25 17:42:15.1 +0100 CET
    21  ```
    22  
    23  ## Options
    24  
    25  | Flag | Default | Options | Description |
    26  | --- | --- | --- | --- |
    27  | `--full` |  `false` | `true` or `false` | Use long output format |
    28  | `--no-legend` |  `false` | `true` or `false` | Suppress a legend with the list |
    29  
    30  ## Global options
    31  
    32  See the table with [global options in general commands documentation][global-options].
    33  
    34  
    35  [global-options]: ../commands.md#global-options