2023-01-06 19:04:05 +01:00
|
|
|
# plugin push
|
2016-11-14 08:38:06 -08:00
|
|
|
|
2023-01-06 19:04:05 +01:00
|
|
|
<!---MARKER_GEN_START-->
|
2016-11-14 08:38:06 -08:00
|
|
|
Push a plugin to a registry
|
|
|
|
|
2023-01-06 19:04:05 +01:00
|
|
|
### Options
|
|
|
|
|
2024-02-21 09:51:39 +01:00
|
|
|
| Name | Type | Default | Description |
|
|
|
|
|:--------------------------|:-------|:--------|:-------------------|
|
|
|
|
| `--disable-content-trust` | `bool` | `true` | Skip image signing |
|
2023-01-06 19:04:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
2016-11-14 08:38:06 -08:00
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Description
|
|
|
|
|
|
|
|
After you have created a plugin using `docker plugin create` and the plugin is
|
|
|
|
ready for distribution, use `docker plugin push` to share your images to Docker
|
|
|
|
Hub or a self-hosted registry.
|
2016-11-14 08:38:06 -08:00
|
|
|
|
|
|
|
Registry credentials are managed by [docker login](login.md).
|
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Examples
|
|
|
|
|
2016-11-14 08:38:06 -08:00
|
|
|
The following example shows how to push a sample `user/plugin`.
|
|
|
|
|
2021-08-21 14:54:14 +02:00
|
|
|
```console
|
2016-11-14 08:38:06 -08:00
|
|
|
$ docker plugin ls
|
2017-02-07 15:42:48 -08:00
|
|
|
|
2020-06-18 16:37:36 +02:00
|
|
|
ID NAME DESCRIPTION ENABLED
|
|
|
|
69553ca1d456 user/plugin:latest A sample plugin for Docker false
|
2017-04-28 05:24:49 +08:00
|
|
|
|
2016-11-14 08:38:06 -08:00
|
|
|
$ docker plugin push user/plugin
|
|
|
|
```
|
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Related commands
|
2016-11-14 08:38:06 -08:00
|
|
|
|
|
|
|
* [plugin create](plugin_create.md)
|
|
|
|
* [plugin disable](plugin_disable.md)
|
|
|
|
* [plugin enable](plugin_enable.md)
|
|
|
|
* [plugin inspect](plugin_inspect.md)
|
|
|
|
* [plugin install](plugin_install.md)
|
|
|
|
* [plugin ls](plugin_ls.md)
|
|
|
|
* [plugin rm](plugin_rm.md)
|
|
|
|
* [plugin set](plugin_set.md)
|
2017-01-28 16:54:32 -08:00
|
|
|
* [plugin upgrade](plugin_upgrade.md)
|