-
Notifications
You must be signed in to change notification settings - Fork 7
Utilities installation (docker, git, etc)
Roberta Takenaka edited this page Sep 24, 2024
·
2 revisions
Translation: Lilian Calò, 04-Mar-2024 Update: Development team, 24-Set-2024
Back to Table of Contents
Installation of utilities on Rocky Linux 9.3 operating system
- Update the operating system
sudo dnf update
sudo dnf install -y dnf-plugins-core
- Update the certificates
sudo dnf upgrade ca-certificates
- Docker installation
sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo systemctl start docker
sudo systemctl enable docker
sudo usermod -aG docker $USER
- Git installation
sudo dnf install git
Back to Table of Contents