Last active 7 months ago

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