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

     1  # rkt enter
     2  
     3  Given a pod UUID, if you want to enter a running pod to explore its filesystem or see what's running you can use rkt enter.
     4  
     5  ```
     6  # rkt enter 76dc6286
     7  Pod contains multiple apps:
     8          redis
     9          etcd
    10  Unable to determine app name: specify app using "rkt enter --app= ..."
    11  
    12  # rkt enter --app=redis 76dc6286
    13  No command specified, assuming "/bin/bash"
    14  root@rkt-76dc6286-f672-45f2-908c-c36dcd663560:/# ls
    15  bin   data  entrypoint.sh  home  lib64  mnt  proc  run   selinux  sys  usr
    16  boot  dev   etc            lib   media  opt  root  sbin  srv      tmp  var
    17  ```
    18  
    19  ## Options
    20  
    21  | Flag | Default | Options | Description |
    22  | --- | --- | --- | --- |
    23  | `--app` |  `` | Name of an app | Name of the app to enter within the specified pod |
    24  
    25  ## Global options
    26  
    27  See the table with [global options in general commands documentation][global-options].
    28  
    29  
    30  [global-options]: ../commands.md#global-options