...
1# plugin push
2
3<!---MARKER_GEN_START-->
4Push a plugin to a registry
5
6### Options
7
8| Name | Type | Default | Description |
9|:--------------------------|:-------|:--------|:-------------------|
10| `--disable-content-trust` | `bool` | `true` | Skip image signing |
11
12
13<!---MARKER_GEN_END-->
14
15## Description
16
17After you have created a plugin using `docker plugin create` and the plugin is
18ready for distribution, use `docker plugin push` to share your images to Docker
19Hub or a self-hosted registry.
20
21Registry credentials are managed by [docker login](login.md).
22
23## Examples
24
25The following example shows how to push a sample `user/plugin`.
26
27```console
28$ docker plugin ls
29
30ID NAME DESCRIPTION ENABLED
3169553ca1d456 user/plugin:latest A sample plugin for Docker false
32
33$ docker plugin push user/plugin
34```
35
36## Related commands
37
38* [plugin create](plugin_create.md)
39* [plugin disable](plugin_disable.md)
40* [plugin enable](plugin_enable.md)
41* [plugin inspect](plugin_inspect.md)
42* [plugin install](plugin_install.md)
43* [plugin ls](plugin_ls.md)
44* [plugin rm](plugin_rm.md)
45* [plugin set](plugin_set.md)
46* [plugin upgrade](plugin_upgrade.md)
View as plain text