网上教程很多,所以记录下
环境:ubunt14.04;64位
因为版本够高,不用更新内核了
根据网上查询的步骤
1,安装
sudo apt-get install apt-transport-https
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 sudo bash -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" sudo apt-get update sudo apt-get install lxc-docker2,测试是否安装成功
sudo docker
#会出现一些参数解释,最后一句‘Run 'docker COMMAND --help' for more information on a command.’
3,下载官方ubuntu image
sudo docker pull ubuntu
#网上介绍因为有时被墙,所以可能下载失败。不过我这次倒是成功了
4,hello world
sudo docker run ubuntu /bin/echo hello world
#打印hello world
5,第4步是docker命令运行模式中的短暂方式。
命令运行完后,容器container终止,但没有消失
$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 182bd7dbadef ubuntu:latest "/bin/echo hello wor 3 minutes ago Exited (0) 3 minutes ago dreamy_perlman 1b2c0cf1084e ubuntu:latest "/bin/echo hello wor 16 hours ago Exited (0) 16 hours ago agitated_rosalind#这是我执行过两次的结果
再次查看id命令:sudo docker start container_id,以刚执行的为例:
$ sudo docker start 182bd7dbadef
182bd7dbadef查看资料:http://www.tuicool.com/articles/aIvYra
http://www.cnblogs.com/linjiqin/p/3625609.html
版权声明:本文为博主原创文章,未经博主允许不得转载。