2016-11-14 11:38:06 -05:00
|
|
|
---
|
|
|
|
title: "plugin push"
|
|
|
|
description: "the plugin push command description and usage"
|
|
|
|
keywords: "plugin, push"
|
|
|
|
---
|
|
|
|
|
2017-10-04 13:03:55 -04:00
|
|
|
<!-- This file is maintained within the docker/cli GitHub
|
2017-07-28 13:28:23 -04:00
|
|
|
repository at https://github.com/docker/cli/. Make all
|
2016-11-14 11:38:06 -05:00
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
|
|
|
```markdown
|
2017-01-27 10:17:02 -05: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`.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker plugin ls
|
2017-02-07 18:42:48 -05:00
|
|
|
|
2016-12-26 13:17:35 -05:00
|
|
|
ID NAME TAG 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)
|