github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/cli/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  ```markdown
     8  Usage:  docker plugin push [OPTIONS] PLUGIN[:TAG]
     9  
    10  Push a plugin to a registry
    11  
    12  Options:
    13        --disable-content-trust   Skip image signing (default true)
    14        --help                    Print usage
    15  ```
    16  
    17  ## Description
    18  
    19  After you have created a plugin using `docker plugin create` and the plugin is
    20  ready for distribution, use `docker plugin push` to share your images to Docker
    21  Hub or a self-hosted registry.
    22  
    23  Registry credentials are managed by [docker login](login.md).
    24  
    25  ## Examples
    26  
    27  The following example shows how to push a sample `user/plugin`.
    28  
    29  ```bash
    30  $ docker plugin ls
    31  
    32  ID             NAME                    DESCRIPTION                  ENABLED
    33  69553ca1d456   user/plugin:latest      A sample plugin for Docker   false
    34  
    35  $ docker plugin push user/plugin
    36  ```
    37  
    38  ## Related commands
    39  
    40  * [plugin create](plugin_create.md)
    41  * [plugin disable](plugin_disable.md)
    42  * [plugin enable](plugin_enable.md)
    43  * [plugin inspect](plugin_inspect.md)
    44  * [plugin install](plugin_install.md)
    45  * [plugin ls](plugin_ls.md)
    46  * [plugin rm](plugin_rm.md)
    47  * [plugin set](plugin_set.md)
    48  * [plugin upgrade](plugin_upgrade.md)