github.com/kobeld/docker@v1.12.0-rc1/docs/reference/commandline/plugin_inspect.md (about)

     1  <!--[metadata]>
     2  +++
     3  title = "plugin inspect"
     4  description = "The plugin inspect command description and usage"
     5  keywords = ["plugin, inspect"]
     6  [menu.main]
     7  parent = "smn_cli"
     8  advisory = "experimental"
     9  +++
    10  <![end-metadata]-->
    11  
    12  # plugin inspect (experimental)
    13  
    14      Usage: docker plugin inspect PLUGIN
    15  
    16      Return low-level information about a plugin
    17  
    18        --help              Print usage
    19  
    20  
    21  Returns information about a plugin. By default, this command renders all results
    22  in a JSON array.
    23  
    24  Example output:
    25  
    26  ```bash
    27  $ docker plugin inspect tiborvass/no-remove:latest
    28  ```
    29  ```JSON
    30  {
    31      "Manifest": {
    32          "ManifestVersion": "",
    33          "Description": "A test plugin for Docker",
    34          "Documentation": "https://docs.docker.com/engine/extend/plugins/",
    35          "Entrypoint": [
    36              "plugin-no-remove",
    37              "/data"
    38          ],
    39          "Interface": {
    40              "Types": [
    41                  "docker.volumedriver/1.0"
    42              ],
    43              "Socket": "plugins.sock"
    44          },
    45          "Network": {
    46              "Type": "host"
    47          },
    48          "Capabilities": null,
    49          "Mounts": [
    50              {
    51                  "Name": "",
    52                  "Description": "",
    53                  "Settable": false,
    54                  "Source": "/data",
    55                  "Destination": "/data",
    56                  "Type": "bind",
    57                  "Options": [
    58                      "shared",
    59                      "rbind"
    60                  ]
    61              },
    62              {
    63                  "Name": "",
    64                  "Description": "",
    65                  "Settable": false,
    66                  "Source": null,
    67                  "Destination": "/foobar",
    68                  "Type": "tmpfs",
    69                  "Options": null
    70              }
    71          ],
    72          "Devices": [
    73              {
    74                  "Name": "device",
    75                  "Description": "a host device to mount",
    76                  "Settable": false,
    77                  "Path": null
    78              }
    79          ],
    80          "Env": [
    81              {
    82                  "Name": "DEBUG",
    83                  "Description": "If set, prints debug messages",
    84                  "Settable": false,
    85                  "Value": null
    86              }
    87          ],
    88          "Args": [
    89              {
    90                  "Name": "arg1",
    91                  "Description": "a command line argument",
    92                  "Settable": false,
    93                  "Value": null
    94              }
    95          ]
    96      },
    97      "Config": {
    98          "Mounts": [
    99              {
   100                  "Source": "/data",
   101                  "Destination": "/data",
   102                  "Type": "bind",
   103                  "Options": [
   104                      "shared",
   105                      "rbind"
   106                  ]
   107              },
   108              {
   109                  "Source": null,
   110                  "Destination": "/foobar",
   111                  "Type": "tmpfs",
   112                  "Options": null
   113              }
   114          ],
   115          "Env": [],
   116          "Args": [],
   117          "Devices": null
   118      },
   119      "Active": true,
   120      "Name": "tiborvass/no-remove",
   121      "Tag": "latest",
   122      "ID": "ac9d36b664921d61813254f7e9946f10e3cadbb676346539f1705fcaf039c01f"
   123  }
   124  ```
   125  (output formatted for readability)
   126  
   127  
   128  
   129  ## Related information
   130  
   131  * [plugin ls](plugin_ls.md)
   132  * [plugin enable](plugin_enable.md)
   133  * [plugin disable](plugin_disable.md)
   134  * [plugin install](plugin_install.md)
   135  * [plugin rm](plugin_rm.md)