Skip to content

Commit 90f0742

Browse files
author
Ian Campbell
committed
Document the plugin field in the config file
Signed-off-by: Ian Campbell <[email protected]>
1 parent 20439aa commit 90f0742

File tree

1 file changed

+14
-1
lines changed
  • docs/reference/commandline

1 file changed

+14
-1
lines changed

docs/reference/commandline/cli.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,10 @@ Users can override your custom or the default key sequence on a per-container
223223
basis. To do this, the user specifies the `--detach-keys` flag with the `docker
224224
attach`, `docker exec`, `docker run` or `docker start` command.
225225

226+
The property `plugins` contains settings specific to CLI plugins. The
227+
key is the plugin name, while the value is a further map of options,
228+
which are specific to that plugin.
229+
226230
Following is a sample `config.json` file:
227231

228232
```json
@@ -246,7 +250,16 @@ Following is a sample `config.json` file:
246250
"awesomereg.example.org": "hip-star",
247251
"unicorn.example.com": "vcbait"
248252
},
249-
"stackOrchestrator": "kubernetes"
253+
"stackOrchestrator": "kubernetes",
254+
"plugins": {
255+
"plugin1": {
256+
"option": "value"
257+
},
258+
"plugin2": {
259+
"anotheroption": "anothervalue",
260+
"athirdoption": "athirdvalue"
261+
}
262+
}
250263
}
251264
{% endraw %}
252265
```

0 commit comments

Comments
 (0)