Last active 7 months ago

Revision f3168dab064652ec849f84626691fe52fc051ad4

install-docker.sh Raw
1#!/usr/bin/bash
2dnf update -y
3dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
4dnf install -y docker-ce docker-ce-cli containerd.io
5systemctl start docker
6systemctl enable docker
7