github.com/thajeztah/cli@v0.0.0-20240223162942-dc6bfac81a8b/docs/reference/commandline/plugin_push.md (about) 1 # plugin push 2 3 <!---MARKER_GEN_START--> 4 Push 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 17 After you have created a plugin using `docker plugin create` and the plugin is 18 ready for distribution, use `docker plugin push` to share your images to Docker 19 Hub or a self-hosted registry. 20 21 Registry credentials are managed by [docker login](login.md). 22 23 ## Examples 24 25 The following example shows how to push a sample `user/plugin`. 26 27 ```console 28 $ docker plugin ls 29 30 ID NAME DESCRIPTION ENABLED 31 69553ca1d456 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)