您的位置:首页 > 运维架构 > Docker

Docker在linux中的快速安装

2016-03-07 11:47 1251 查看
有一个神奇的网站
https://get.docker.com
这是docker在linux中的安装脚本。

#
# This script is meant for quick & easy install via:
#   'curl -sSL https://get.docker.com/ | sh'
# or:
#   'wget -qO- https://get.docker.com/ | sh'
#
# For test builds (ie. release candidates):
#   'curl -fsSL https://test.docker.com/ | sh'
# or:
#   'wget -qO- https://test.docker.com/ | sh'
#
# For experimental builds:
#   'curl -fsSL https://experimental.docker.com/ | sh'
# or:
#   'wget -qO- https://experimental.docker.com/ | sh'
#
# Docker Maintainers:
#   To update this script on https://get.docker.com, #   use hack/release.sh during a normal release,
#   or the following one-liner for script hotfixes:
#     s3cmd put --acl-public -P hack/install.sh s3://get.docker.com/index
#


安装很简单,只需要执行上面的任意一条命令即可,如
curl -sSL https://get.docker.com/ | sh
,具体在安装过程执行的指令可以访问
https://get.docker.com/
查看。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: