写一个kylinV10系统安装docker的shell脚本
时间: 2024-06-09 13:10:50 浏览: 201
docker的脚本安装
以下是一个简单的shell脚本,可以用来安装Docker在Kylin V10系统上:
```sh
#!/bin/bash
# 安装 Docker 前的准备工作
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y
# 添加 Docker 官方 GPG 秘钥
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
# 添加 Docker 官方 apt 仓库
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
# 更新 apt 仓库缓存
sudo apt-get update
# 安装 Docker
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
# 启动 Docker 服务
sudo systemctl start docker
# 设置 Docker 自启动
sudo systemctl enable docker
```
请注意,在执行此脚本之前,您需要以管理员权限运行它。您可以使用以下命令运行脚本:
```sh
sudo sh install_docker.sh
```
希望这可以帮助您在 Kylin V10 系统上安装 Docker。
阅读全文