Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Latest commit

 

History

History
72 lines (45 loc) · 1.59 KB

usage.md

File metadata and controls

72 lines (45 loc) · 1.59 KB

Usage

The docker-setup CLI comes with help included. The following scenarios are meant as quickstart tutorials.

Scenario 1: You want the default set of tools

By default, docker-setup will only install a small set of tools.

docker-setup install --default

This default set includes basic tools for containerization with Docker.

Scenario 2: You want to investigate which tools are available

List which tools are available in docker-setup:

docker-setup list

You can also check the website.

Scenario 3: You want to install a specific tool

It is possible to install individual tools:

docker-setup install gojq
docker-setup install kubectl helm

Scenario 4: You want to search for tools

You can search for the specified term in names, tags and dependencies:

docker-setup search jq

Scenario 5: You want to update installed tools

Updated tools which are already installed:

docker-setup install --installed

Scenario 6: You want to see what will happen

Show which tools will be processed and updated:

docker-setup install --installed --plan

Scenario 7: You want to script around it

Using --check instead of --plan will terminate with exit code 1 if outdated tools are present:

docker-setup install --installed --check

Scenario 8: Reinstall tool(s)

By adding the --reinstall parameter, the selected tools can be reinstalled regardless if they are outdated:

docker-setup install gojq --reinstall