ubuntu安装Docker
1、安装curl工具 copy
-
#apt-get update #apt-get install curl
2、通过脚本安装docker copy
-
#curl -fsSL get.docker.com -o get-docker.sh #sh get-docker.sh --mirror Aliyun
3、配置镜像加速器
-
#curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://573b0ee5.m.daocloud.io #systemctl restart docker.service
4、测试
-
# docker run hello-world
补充
apt-get,是一条linux命令,适用于deb包管理式的操作系统,主要用于自动从互联网的软件仓库中搜索、安装、升级、卸载软件或操作系统。
curl是利用URL语法在命令行方式下工作的开源文件传输工具。它被广泛应用在Unix、多种Linux发行版中,并且有DOS和Win32、Win64下的移植版本。
原文地址:http://blog.51cto.com/11511431/2089711
时间: 2024-10-20 08:00:27