Configuring the Ansible Installer Virtual Machine
This article details how to prepare the Ansible installer VM (ready to configure), and run the Lightbits installer packages.
You will first need to SSH into your Ansible installer VM.
Installing wget
The tool of choice for downloading packages is wget. If you have another preferred method, you can use that and change the commands in the rest of the guide.
- Install wget.
sudo yum install -y wget
Installing Docker
- Install Yum utils and add the Centos repo.
sudo yum install -y yum-utils
sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
- Install Docker.
sudo yum install docker-ce docker-ce-cli containerd.io docker-compose-plugin
- Enable and start Docker.
sudo systemctl enable docker && sudo systemctl start docker
Was this page helpful?