github.com/cozy/cozy-stack@v0.0.0-20240603063001-31110fa4cae1/docs/cli/cozy-stack_konnectors_install.md (about)

     1  ## cozy-stack konnectors install
     2  
     3  Install a konnector with the specified slug name
     4  from the given source URL.
     5  
     6  ### Synopsis
     7  
     8  
     9  Install a konnector with the specified slug name. You can also provide the
    10  version number to install a specific release if you use the registry:// scheme.
    11  Following formats are accepted:
    12  	registry://<konnector>/<channel>/<version>
    13  	registry://<konnector>/<channel>
    14  	registry://<konnector>/<version>
    15  	registry://<konnector>
    16  
    17  If you provide a channel and a version, the channel is ignored.
    18  Default channel is stable.
    19  Default version is latest.
    20  
    21  
    22  ```
    23  cozy-stack konnectors install <slug> [sourceurl] [flags]
    24  ```
    25  
    26  ### Examples
    27  
    28  ```
    29  
    30  $ cozy-stack konnectors install --domain cozy.localhost:8080 trainline registry://trainline/stable/1.0.1
    31  $ cozy-stack konnectors install --domain cozy.localhost:8080 trainline registry://trainline/stable
    32  $ cozy-stack konnectors install --domain cozy.localhost:8080 trainline registry://trainline/1.2.0
    33  $ cozy-stack konnectors install --domain cozy.localhost:8080 trainline registry://trainline
    34  
    35  ```
    36  
    37  ### Options
    38  
    39  ```
    40    -h, --help   help for install
    41  ```
    42  
    43  ### Options inherited from parent commands
    44  
    45  ```
    46        --admin-host string   administration server host (default "localhost")
    47        --admin-port int      administration server port (default 6060)
    48        --all-domains         work on all domains iteratively
    49    -c, --config string       configuration file (default "$HOME/.cozy.yaml")
    50        --domain string       specify the domain name of the instance (default "cozy.localhost:8080")
    51        --host string         server host (default "localhost")
    52        --parameters string   override the parameters of the installed konnector
    53    -p, --port int            server port (default 8080)
    54  ```
    55  
    56  ### SEE ALSO
    57  
    58  * [cozy-stack konnectors](cozy-stack_konnectors.md)	 - Interact with the konnectors
    59