The first step to setup the environment is to properly install the Docker Engine in the Linux machine that will later become the VaultOne Connector.
To properly setup we will follow the official guide of installation for the Docker Engine, in the link below you will have access to the install guide for every other system that is supported.
In this article we will guide you trought the necessary commands for the installation in the Ubuntu OS, In case of any doubt or complication we strongly recommend reading the installation guide provided below.
OBS - RECOMENDATION:
We recommend the installation to be done in order, and running the whole block of code at once, every block of code must be run individually.
Fisrt step:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
Second step:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
While running the command in second step, you should be prompted to confirm the installation, basically you need to place an y and then press enter to confirm the installation.
Validation:
To verify if the installation was successful we can run the following commands.
sudo systemctl status docker
sudo docker ps -a
Have you found what you were looking for? If you still have questions, get in touch with us! [email protected]