2016-11-14 11:38:06 -05:00
|
|
|
---
|
|
|
|
title: "plugin push"
|
|
|
|
description: "the plugin push command description and usage"
|
|
|
|
keywords: "plugin, push"
|
|
|
|
---
|
|
|
|
|
|
|
|
```markdown
|
2020-10-02 09:51:01 -04:00
|
|
|
Usage: docker plugin push [OPTIONS] PLUGIN[:TAG]
|
2016-11-14 11:38:06 -05:00
|
|
|
|
|
|
|
Push a plugin to a registry
|
|
|
|
|
|
|
|
Options:
|
2017-01-17 09:46:07 -05:00
|
|
|
--disable-content-trust Skip image signing (default true)
|
|
|
|
--help Print usage
|
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)
|