Created
July 20, 2020 02:49
-
-
Save sempr/bda16ca074f21ac3daf75960db43749c to your computer and use it in GitHub Desktop.
centos8 docker install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo | |
dnf install -y https://download.docker.com/linux/centos/7/x86_64/stable/Packages/containerd.io-1.2.13-3.2.el7.x86_64.rpm | |
dnf install -y docker-ce | |
curl -o /usr/local/bin/docker-compose -L https://github.com/docker/compose/releases/download/1.26.2/docker-compose-Linux-x86_64 | |
chmod +x /usr/local/bin/docker-compose | |
systemctl enable --now docker | |
#dnf install -y git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment