docker入门之HelloWorld
作者:雨水,日期:2016-04-01 CSDN博客:http://blog.csdn.net/gobitan
摘要:docker真的是个好东东,能够极大的简化应用程序的部署,同时作为轻量级的VM还有其他非常多的用途。把docker应用到开发和部署中非常必要。本文主要是运行了一个简单的helloworld,以对docker有个初步的认识。

docker是什么
docker是一个用go语言开发的开源的应用容器引擎,让开发者可以打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何支持docker的机器上。目前苹果,Linux和Windows都已经支持docker。docker有点像轻量级的虚拟机。

通过apt-get安装docker
注:这里以ubuntu14.04为例
dennis@ubuntu14:~$ sudo apt-get install docker.io
dennis@ubuntu14:~$ docker -v
Docker version 1.6.2, build 7c8fca2
ubuntu14.04的apt库里的版本1.6.2已经算比较老的了,如果要用,建议安装最新版本。

如何在Ubuntu14.04中安装最新版的docker?
dennis@ubuntu14:~$ curl -fsSL https://get.docker.com/ | sh
dennis@ubuntu14:~$ sudo usermod -aG docker dennis
备注:上面命令中的dennis为当前用户名,你需要替换为你自己的用户名
dennis@ubuntu14:~$ exit
logout
退出,然后重新登录进来以使得上面的命令生效,然后继续
dennis@ubuntu14:~$ docker -v
Docker version 1.10.3, build 20f81dd
可以看到,当前(2016.04.01)docker的最新版本为1.10.3.

运行docker的hello world
第一步:下载hello world的docker img
dennis@ubuntu14:~$ sudo docker pull hello-world
docker有一个公共的img仓库,执行docker pull默认会在这个公共库里去下载对应的img,类似maven一样,maven的respository里有很多jar包。

第二步:运行下载到本地的hello world docker img
dennis@ubuntu14:~$ sudo docker run hello-world

Hello from Docker.
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
 3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker Hub account:
 https://hub.docker.com

For more examples and ideas, visit:
 https://docs.docker.com/userguide/

dennis@ubuntu14:~$

参考资料:
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐