|
@@ -142,6 +142,20 @@ property is not set, the client falls back to the default table
|
|
format. For a list of supported formatting directives, see
|
|
format. For a list of supported formatting directives, see
|
|
[**Formatting** section in the `docker stats` documentation](stats.md)
|
|
[**Formatting** section in the `docker stats` documentation](stats.md)
|
|
|
|
|
|
|
|
+The property `credsStore` specifies an external binary to serve as the default
|
|
|
|
+credential store. When this property is set, `docker login` will attempt to
|
|
|
|
+store credentials in the binary specified by `docker-credential-<value>` which
|
|
|
|
+is visible on `$PATH`. If this property is not set, credentials will be stored
|
|
|
|
+in the `auths` property of the config. For more information, see the
|
|
|
|
+[**Credentials store** section in the `docker login` documentation](login.md#credentials-store)
|
|
|
|
+
|
|
|
|
+The property `credHelpers` specifies a set of credential helpers to use
|
|
|
|
+preferentially over `credsStore` or `auths` when storing and retrieving
|
|
|
|
+credentials for specific registries. If this property is set, the binary
|
|
|
|
+`docker-credential-<value>` will be used when storing or retrieving credentials
|
|
|
|
+for a specific registry. For more information, see the
|
|
|
|
+[**Credential helpers** section in the `docker login` documentation](login.md#credential-helpers)
|
|
|
|
+
|
|
Once attached to a container, users detach from it and leave it running using
|
|
Once attached to a container, users detach from it and leave it running using
|
|
the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
|
|
the using `CTRL-p CTRL-q` key sequence. This detach key sequence is customizable
|
|
using the `detachKeys` property. Specify a `<sequence>` value for the
|
|
using the `detachKeys` property. Specify a `<sequence>` value for the
|
|
@@ -171,7 +185,12 @@ Following is a sample `config.json` file:
|
|
"imagesFormat": "table {{.ID}}\\t{{.Repository}}\\t{{.Tag}}\\t{{.CreatedAt}}",
|
|
"imagesFormat": "table {{.ID}}\\t{{.Repository}}\\t{{.Tag}}\\t{{.CreatedAt}}",
|
|
"statsFormat": "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}",
|
|
"statsFormat": "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}",
|
|
"serviceInspectFormat": "pretty",
|
|
"serviceInspectFormat": "pretty",
|
|
- "detachKeys": "ctrl-e,e"
|
|
|
|
|
|
+ "detachKeys": "ctrl-e,e",
|
|
|
|
+ "credsStore": "secretservice",
|
|
|
|
+ "credHelpers": {
|
|
|
|
+ "awesomereg.example.org": "hip-star",
|
|
|
|
+ "unicorn.example.com": "vcbait"
|
|
|
|
+ }
|
|
}
|
|
}
|
|
{% endraw %}
|
|
{% endraw %}
|
|
|
|
|