Last active 7 months ago

Revision 950f9d4c12a6c37c1848aa88a800aae2131b0d2e

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