CentOS with AAPanel and Docker

Install AAPanel on CentOS

Official website
Guidance

yum install -y wget && wget -O install.sh http://www.aapanel.com/script/install_6.0_en.sh && bash install.sh forum

Install Docker Engine on CentOS

Official guidance

sudo yum update -y

sudo yum install -y yum-utils

sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo

sudo yum install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

# If prompted to accept the GPG key, verify that the fingerprint matches 060A 61C5 1B55 8A7F 742B 77AA C52F EB6B 621E 9F35, and if so, accept it.

Start Docker

sudo systemctl start docker

# Verify that the Docker Engine
sudo docker run hello-world
or
docker --version

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *