2023-01-06 13:04:05 -05:00
|
|
|
# plugin push
|
2016-11-14 11:38:06 -05:00
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
<!---MARKER_GEN_START-->
|
2016-11-14 11:38:06 -05:00
|
|
|
Push a plugin to a registry
|
|
|
|
|
2023-01-06 13:04:05 -05:00
|
|
|
### Options
|
|
|
|
|
|
|
|
| Name | Type | Default | Description |
|
|
|
|
|:--------------------------|:-----|:--------|:-------------------|
|
|
|
|
| `--disable-content-trust` | | | Skip image signing |
|
|
|
|
|
|
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
2016-11-14 11:38:06 -05:00
|
|
|
|
2017-02-07 18:42:48 -05: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 11:38:06 -05:00
|
|
|
|
|
|
|
Registry credentials are managed by [docker login](login.md).
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Examples
|
|
|
|
|
2016-11-14 11:38:06 -05:00
|
|
|
The following example shows how to push a sample `user/plugin`.
|
|
|
|
|
2021-08-21 08:54:14 -04:00
|
|
|
```console
|
2016-11-14 11:38:06 -05:00
|
|
|
$ docker plugin ls
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2020-06-18 10:37:36 -04:00
|
|
|
ID NAME DESCRIPTION ENABLED
|
|
|
|
69553ca1d456 user/plugin:latest A sample plugin for Docker false
|
2017-04-27 17:24:49 -04:00
|
|
|
|
2016-11-14 11:38:06 -05:00
|
|
|
$ docker plugin push user/plugin
|
|
|
|
```
|
|
|
|
|
2017-02-07 18:42:48 -05:00
|
|
|
## Related commands
|
2016-11-14 11:38:06 -05: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 19:54:32 -05:00
|
|
|
* [plugin upgrade](plugin_upgrade.md)
|