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