github.com/blixtra/rkt@v0.8.1-0.20160204105720-ab0d1add1a43/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` | Supress a legend with the list |
    29  
    30  ## Global options
    31  
    32  | Flag | Default | Options | Description |
    33  | --- | --- | --- | --- |
    34  | `--debug` |  `false` | `true` or `false` | Prints out more debug information to `stderr` |
    35  | `--dir` | `/var/lib/rkt` | A directory path | Path to the `rkt` data directory |
    36  | `--insecure-options` |  none | <ul><li>**none**: All security features are enabled</li><li>**http**: Allow HTTP connections. Be warned that this will send any credentials as clear text.</li><li>**image**: Disables verifying image signatures</li><li>**tls**: Accept any certificate from the server and any host name in that certificate</li><li>**ondisk**: Disables verifying the integrity of the on-disk, rendered image before running. This significantly speeds up start time.</li><li>**all**: Disables all security checks</li></ul>  | Comma-separated list of security features to disable |
    37  | `--local-config` |  `/etc/rkt` | A directory path | Path to the local configuration directory |
    38  | `--system-config` |  `/usr/lib/rkt` | A directory path | Path to the system configuration directory |
    39  | `--trust-keys-from-https` |  `false` | `true` or `false` | Automatically trust gpg keys fetched from https |
    40  | `--user-config` |  `` | A directory path | Path to the user configuration directory |