CLI
Overview
The CLI can be used to create, start and manage your Quinimbus projects. The binary can be downloaded here
General options
The base command supports the following options:
short | long | description |
---|---|---|
-h | --help | Show this help message and exit |
-v | --verbose | Show verbose log output |
-V | --version | Print version information and exit |
project
Commands to create and manage projects. It contains the following subcommands:
create
This command creates a new project. A project name has to be provided.
bash
quinimbus project create [<options>] <projectName>
Options
short | long | default | description |
---|---|---|---|
-a | --artifactId= | <projectname> | The artifactId used for the new project |
-d | --directory= | <projectname> | The directory to create the project into |
-g | --groupId= | io.company.cloud | The groupId used for the new project |
-o | --mvn-output | disabled | Show the output of the invoked mvn commands, only visible in verbose mode |
--quinimbusVersion= | dependend on CLI version | The version of quinimbus to use to create the project | |
--skip-archetype-installation | disabled | Skip installation of archetype, for example to use a locally installed one | |
-v | --verbose | disabled | Show verbose log output |
-V | --projectVersion | 0.1-SNAPSHOT | The version used for the new project |
build-images
This command builds the docker images for this project
bash
quinimbus project build-images [<options>]
Options
short | long | default | description |
---|---|---|---|
-c | --clean | disabled | Do not use cache and repull all images |
-o | --docker-output | disabled | Show the output of the invoked docker commands, only visible in verbose mode |
-v | --verbose | disabled | Show verbose log output |
run-containers
This command runs the built docker images locally
bash
quinimbus project run-containers [<options>]
Options
short | long | default | description |
---|---|---|---|
-o | --docker-output | disabled | Show the output of the invoked docker commands, only visible in verbose mode |
-v | --verbose | disabled | Show verbose log output |
stop-containers
This command stops the locally started docker containers
bash
quinimbus project run-containers [<options>]
Options
short | long | default | description |
---|---|---|---|
-c | --clear | disabled | |
-o | --docker-output | disabled | Show the output of the invoked docker commands, only visible in verbose mode |
-v | --verbose | disabled | Show verbose log output |