github.com/stackdocker/rkt@v0.10.1-0.20151109095037-1aa827478248/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      NETWORKS
     8  5bc080ca    redis   redis                    running    default:ip4=172.16.28.7
     9              etcd    coreos.com/etcd:v2.0.9
    10  3089337c    nginx   nginx                    exited
    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      NETWORKS
    18  5bc080cav-9e03-480d-b705-5928af396cc5  redis   redis                   sha512-91e98d7f1679   running    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
    21  ```