本次主要是详细记录Docker1.12在Ubuntu16.04上的安装过程,创建Docker组(避免每次敲命令都需要sudo),Docker常用的基本命令的总结,在容器中运行Hello world,以及创建一个基于Python Flask的web应用容器的全过程。
1.Docker1.12在Ubuntu16.04上安装 1.1.先决条件1,添加Docker源 linuxidc@linuxidc.com:~$ sudo apt-get update增加CA证书
linuxidc@linuxidc.com:~$ sudo apt-get install apt-transport-https ca-certificates添加GPG Key(一种加密手段)
linuxidc@linuxidc.com:~$ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D创建docker.list文件
linuxidc@linuxidc.com:~$ sudo vim /etc/apt/sources.list.d/docker.list #添加Ubuntu16.04LST的入口 deb https://apt.dockerproject.org/repo ubuntu-xenial main再次更新源
linuxidc@linuxidc.com:~$ sudo apt-get update以防万一,清除过时的源
linuxidc@linuxidc.com:~$ sudo apt-get purge lxc-docker验证下APT是从正确的库源下载应用的
linuxidc@linuxidc.com:~$ apt-cache policy docker-engine至此,可见已经配置好了Docker的源 1.2.先决条件2,安装aufs驱动linux-image-extra
For Ubuntu Trusty, Wily, and Xenial, it’s recommended to install the linux-image-extra kernel package. The linux-image-extra package allows you use the aufs storage driver可以实现容器间可执行文件和运行库的共享。
更新源,会发现Hit:9 https://apt.dockerproject.org/repo ubuntu-xenial InRelease,也说明Docker在第一步1设置成功。
linuxidc@linuxidc.com:~$ sudo apt-get update安装 linux-image-extra
linuxidc@linuxidc.com:~$ sudo apt-get install linux-image-extra-$(uname -r) 1.3.安装Docker(如果先决条件1,2步正确完成了)更新源
linuxidc@linuxidc.com:~$ sudo apt-get update通过apt命令在线安装docker
linuxidc@linuxidc.com:~$ sudo apt-get install docker-engine开启docker的守护进程(Docker服务开启)
linuxidc@linuxidc.com:~$ sudo service docker start国际惯例,用一个Hello world的来测试安装成功
linuxidc@linuxidc.com:~$ sudo docker run hello-world本地本来没有Hello World镜像,通过Docker源获取到,并成功现实Hello world。
查看正在运行的容器 sudo docker ps -ls 1.4.创建Docker用户组,避免使用sudo
如第一步最后“查看正在运行的容器”如果没有sudo,不以root身份权限运行查看容器命令则会报错Cannot connect to the Docker daemon. Is the docker daemon running on this host?如图
原因:
The docker daemon binds to a Unix socket instead of a TCP port. By default that Unix socket is owned by the user root and other users can access it with sudo. For this reason, docker daemon always runs as the root user.
To avoid having to use sudo when you use the docker command, create a Unix group called docker and add users to it. When the docker daemon starts, it makes the ownership of the Unix socket read/writable by the docker group.
创建用户组docker,可以避免使用sudo
将docker和linuxidc(王小雷用户名,在创建主机时默认用户名称是ubuntu)添加到一个组内