Configuring YUM Repository Sources
Setting Up YUM Repositories
Online Repository Configuration
Alibaba Cloud Repository
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
yum install epel-release -y
yum clean all
yum makecache
Huawei ...
Posted on Wed, 24 Jun 2026 18:15:48 +0000 by phpmania1
Installing Docker on Linux via Static Binary
Installing Docker via Static Binary
Reference: Install Docker Engine from binaries
Download the static binary archive. Visit https://download.docker.com/linux/static/stable/ (or replace stable with nightly or test), select your hardware platform, and download the .tgz file corresponding to the Docker Engine version you wish to install.
In this ...
Posted on Fri, 08 May 2026 19:24:22 +0000 by RedOrbit