Skip to content

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

  1. Update the operating system
sudo dnf update
sudo dnf install -y dnf-plugins-core
  1. Update the certificates
sudo dnf upgrade ca-certificates
  1. 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
  1. Git installation
sudo dnf install git 

Back to Table of Contents