一,安装docker:
1,安装curl:在shell中执行:sudo apt-get install curl
2,shell中执行:curl -sSL https://get.daocloud.io/docker | sh
3,上面命令执行完毕后,执行提示命令:sudo usermod -aG docker sunylat(注意:提示上面名字应该是你当前登入用户名,不要用我的!)
二,测试docker:上面两个命令执行完毕,docker应该按照完毕了,但是我们需要启动docker服务。
1,shell中执行:sudo service docker start
2,执行测试:sudo docker run hello-world
对于上面命令官方解释执行过程是这样:This command downloads a test image and runs it in a container. When the container runs, it prints an informational message. Then, it exits.
执行上面命令后,会下载一个测试的image,随后在docker里面执行,打印一个信息,随后退出。我执行上面命令确实也是这样,如果测试结果是这样,那docker确实搞定了!
阿里云搭建docker的历程:http://www.linuxdiyf.com/linux/15564.html
阿里云CentOS 6.5模板上安装Docker:http://www.linuxdiyf.com/linux/10363.html
阿里云Ubuntu 14.04模板上安装Docker:http://www.linuxdiyf.com/linux/10361.html