Ubuntu 安装 docker

# 访问服务器
ssh root@47.96.159.162

# apt升级
sudo apt-get update
# 添加相关软件包 sudo apt-get install apt-transport-https sudo apt-get install ca-certificates sudo apt-get install curl sudo apt-get install software-properties-common # 下载软件包的合法性,需要添加软件源的 GPG 密钥 curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add - # source.list 中添加 Docker 软件源 sudo add-apt-repository \ "deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/ \ $(lsb_release -cs) \ stable" # 安装 Docker CE sudo apt-get update sudo apt-get install docker-ce # 启动 Docker CE sudo systemctl enable docker sudo systemctl start docker # 建立 docker 用户组(附加) sudo groupadd docker sudo usermod -aG docker $USER # helloworld测试下 会自动下载 hello-world 镜像 docker run hello-world

 

上一篇:20.5 Shell脚本中的逻辑判断;20.6 文件目录属性判断;20.7 if特殊用法;20.8 20.9 cace判断(上下)


下一篇:Kali Linux安装中文输入法——搜狗输入法