Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

本次主要是详细记录Docker1.12在Ubuntu16.04上的安装过程,创建Docker组(避免每次敲命令都需要sudo),Docker常用的基本命令的总结,在容器中运行Hello world,以及创建一个基于Python Flask的web应用容器的全过程。

1.Docker1.12在Ubuntu16.04上安装

1.1.先决条件1,添加Docker源

[email protected]:~$ apt-cache policy docker-engine

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器
至此,可见已经配置好了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设置成功。

[email protected]:~$ sudo apt-get install linux-image-extra-$(uname -r)

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

1.3.安装Docker(如果先决条件1,2步正确完成了)

更新源

[email protected]:~$ sudo docker run hello-world

本地本来没有Hello World镜像,通过Docker源获取到,并成功现实Hello world。
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器
查看正在运行的容器

sudo docker ps -ls

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

1.4.创建Docker用户组,避免使用sudo

如第一步最后“查看正在运行的容器”如果没有sudo,不以root身份权限运行查看容器命令则会报错Cannot connect to the Docker daemon. Is the docker daemon running on this host?如图
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

原因:
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)添加到一个组内

1.5.如何更新Docker

2.2.开始运行Python Flask

运行Python Flask应用(这个过程可能很慢,根据网速而定,因为如果本地没有镜像training/webapp:latest会自动线上获取)
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器
完成
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器
查看运行中打容器通过 docker ps -l
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

注意:查看你打端口号,可能和我打不一样

我的是(把Terminal最大化容易识别)
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

指定端口号,通过Docker -p,如将32769更改为5000
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器
浏览器访问 http://localhost:80 或者http://localhost/
Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

根据CONTAINER ID 或者 NAMES 来使用log和top命令,如我执行时产生的CONTAINER ID是83442361e61b,而NAMES是reverent_saha

# 按Ctrl+c结束 查看log
[email protected]:~$ docker logs -f reverent_saha

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

[email protected]:~$ docker top reverent_saha

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

[email protected]:~$ docker stop reverent_saha
#开启reverent_saha名称为的web应用容器
[email protected]:~$ docker ps -l

Ubuntu 16.04安装Docker1.12+开发实例+hello world+web应用容器

此时,在打开 http://localhost/ 已经无法链接,因为停止来python flask的web应用。

更多Docker相关教程见以下内容: 

Docker 的详细介绍:请点这里
Docker 的下载地址:请点这里

相关推荐