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

     1  ## cozy-stack apps install
     2  
     3  Install an application with the specified slug name
     4  from the given source URL.
     5  
     6  ### Synopsis
     7  
     8  [Some schemes](https://docs.cozy.io/en/cozy-stack/apps/#sources) are allowed as `[sourceurl]`.
     9  
    10  ```
    11  cozy-stack apps install <slug> [sourceurl] [flags]
    12  ```
    13  
    14  ### Examples
    15  
    16  ```
    17  
    18  $ cozy-stack apps install --domain cozy.localhost:8080 drive registry://drive/stable
    19  $ cozy-stack apps install banks 'git://github.com/cozy/cozy-banks.git#build'
    20  $ cozy-stack apps install myapp 'git+ssh://git@gitlab.example.net/team/myapp.git#build'
    21  
    22  ```
    23  
    24  ### Options
    25  
    26  ```
    27        --ask-permissions   specify that the application should not be activated after installation
    28    -h, --help              help for install
    29  ```
    30  
    31  ### Options inherited from parent commands
    32  
    33  ```
    34        --admin-host string   administration server host (default "localhost")
    35        --admin-port int      administration server port (default 6060)
    36        --all-domains         work on all domains iteratively
    37    -c, --config string       configuration file (default "$HOME/.cozy.yaml")
    38        --domain string       specify the domain name of the instance (default "cozy.localhost:8080")
    39        --host string         server host (default "localhost")
    40    -p, --port int            server port (default 8080)
    41  ```
    42  
    43  ### SEE ALSO
    44  
    45  * [cozy-stack apps](cozy-stack_apps.md)	 - Interact with the applications
    46