检查:
1.内核版本
uname -a
2.Device Mapper
ls -l /sys/class/misc/device-mapper
安装
1.ubuntu维护的版本
apt-get install docker.io
source /etc/bash_completion.d/docker.io
2.Docker维护的版本
apt-get install -y curl
curl -sSL https://get.docker.com|sudo sh
这里我采用了第二种安装方式,使用docker version检查是否安装成功
这里出现了
Cannot connect to the Docker daemon. Is the docker daemon running on this host?
添加docker用户组
sudo groupadd docker
sudo gpasswd -a ${USER} docker
sudo service docker restart
需要注销以后重新登录
随便执行一点什么,那就打印一个hello world。
docker run ubuntu echo 'hello world'
进入docker ubuntu终端
docker run -i -t ubuntu /bin/bash