github.com/olljanat/moby@v1.13.1/docs/reference/commandline/plugin_push.md (about)

     1  ---
     2  title: "plugin push"
     3  description: "the plugin push command description and usage"
     4  keywords: "plugin, push"
     5  ---
     6  
     7  <!-- This file is maintained within the docker/docker Github
     8       repository at https://github.com/docker/docker/. Make all
     9       pull requests against that repo. If you see this file in
    10       another repository, consider it read-only there, as it will
    11       periodically be overwritten by the definitive file. Pull
    12       requests which include edits to this file in other repositories
    13       will be rejected.
    14  -->
    15  
    16  ```markdown
    17  Usage:  docker plugin push [OPTIONS] PLUGIN[:TAG]
    18  
    19  Push a plugin to a registry
    20  
    21  Options:
    22        --help       Print usage
    23  ```
    24  
    25  Use `docker plugin create` to create the plugin. Once the plugin is ready for distribution,
    26  use `docker plugin push` to share your images to the Docker Hub registry or to a self-hosted one.
    27  
    28  Registry credentials are managed by [docker login](login.md).
    29  
    30  The following example shows how to push a sample `user/plugin`.
    31  
    32  ```bash
    33  
    34  $ docker plugin ls
    35  ID                  NAME                  TAG                 DESCRIPTION                ENABLED
    36  69553ca1d456        user/plugin           latest              A sample plugin for Docker false
    37  $ docker plugin push user/plugin
    38  ```
    39  
    40  ## Related information
    41  
    42  * [plugin create](plugin_create.md)
    43  * [plugin disable](plugin_disable.md)
    44  * [plugin enable](plugin_enable.md)
    45  * [plugin inspect](plugin_inspect.md)
    46  * [plugin install](plugin_install.md)
    47  * [plugin ls](plugin_ls.md)
    48  * [plugin rm](plugin_rm.md)
    49  * [plugin set](plugin_set.md)
    50  * [plugin upgrade](plugin_upgrade.md)