Centos - Docker部署
一、环境检测
Docker要求安装环境为 64位系统,且内核在3.8以上
cat /etc/redhat-release # 查看系统版本
getconf LONG_BIT # 查看系统位数,64位还是32位
二、安装步骤
1. 安装依赖
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
2. 设置yum源
yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
3. 执行安装
yum install docker-ce
三、安装完成
查看安装的版本 docker -v
四、常用命令
systemctl start docker # 启动docker
systemctl stop docker # 停止运行
systemctl restart docker # 重启
systemctl status docker # 查看docker状态
systemctl enable docker # 设置docker开机启动
docker info # 查看docker概要信息
docker --help # 查看帮助文档
THE END
二维码
打赏
文章目录
关闭
共有 0 条评论