The docker-setup
CLI comes with help included. The following scenarios are meant as quickstart tutorials.
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.
List which tools are available in docker-setup
:
docker-setup list
You can also check the website.
It is possible to install individual tools:
docker-setup install gojq
docker-setup install kubectl helm
You can search for the specified term in names, tags and dependencies:
docker-setup search jq
Updated tools which are already installed:
docker-setup install --installed
Show which tools will be processed and updated:
docker-setup install --installed --plan
Using --check
instead of --plan
will terminate with exit code 1 if outdated tools are present:
docker-setup install --installed --check
By adding the --reinstall
parameter, the selected tools can be reinstalled regardless if they are outdated:
docker-setup install gojq --reinstall