[root@tiejiang ~]# cd /etc/yum.repos.d [root@tiejiang yum.repos.d]# wget http://www.hop5.in/yum/el6/hop5.repo [root@tiejiang yum.repos.d]# yum install kernel-ml-aufs kernel-ml-aufs-devel
[root@tiejiang ~]# uname -r 2.6.32-431.el6.x86_64 #重启之前的内核版本 [root@tiejiang ~]# reboot [root@tiejiang ~]# uname -a Linux tiejiang.org 3.10.5-3.el6.x86_64 #1 SMP Tue Aug 20 14:10:49 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux #重启之后的内核版本
查看内核是否支持aufs:
[root@tiejiang ~]# grep aufs /proc/filesystems nodev aufs
[root@tiejiang ~]# setenforce 0 [root@tiejiang ~]# sed -i '/^SELINUX=/c\SELINUX=disabled' /etc/selinux/config
[root@tiejiang ~]# rpm -ivh http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm [root@tiejiang ~]# sed -i 's/^mirrorlist=https/mirrorlist=http/' /etc/yum.repos.d/epel.repo
[root@tiejiang ~]# yum -y install docker-io
[root@tiejiang ~]# service docker start Starting cgconfig service: [确定] Starting docker: [确定]
[root@tiejiang ~]# docker version Client version: 1.7.1 Client API version: 1.19 Go version (client): go1.4.2 Git commit (client): 786b29d/1.7.1 OS/Arch (client): linux/amd64 Server version: 1.7.1 Server API version: 1.19 Go version (server): go1.4.2 Git commit (server): 786b29d/1.7.1 OS/Arch (server): linux/amd64
[root@tiejiang ~]# cat /var/log/docker
比如获取最新的centos镜像:
[root@tiejiang ~]# docker pull centos:latest latest: Pulling from centos 3690474eb5b4: Pull complete 0a444b299d5a: Pull complete a04895de1996: Pull complete d4350798c2ee: Pull complete Digest: sha256:6e45de12a92ce6fcc0e3d0ffca8000833675f96679b3f1ecf71485c339826f27 Status: Downloaded newer image for centos:latest
注意:这里要写用docker search搜索到的完整的镜像名。
[root@tiejiang ~]# docker images centos
docker run命令有两个参数,一个是镜像名,一个是要在镜像中运行的命令。
注意:IMAGE=REPOSITORY[:TAG],如果IMAGE参数不指定镜像的TAG,默认TAG为latest。
在刚刚下载的镜像中输出"hello word":
[root@tiejiang ~]# docker run centos echo 'hello world!'
[root@tiejiang ~]# docker ps -a #列出容器 [root@tiejiang ~]# docker ps -l 查看最近生成的容器 [root@tiejiang ~]# docker ps #查看正在运行的容
[root@tiejiang ~]# docker logs 3125 #显示容器的标准输出(docker logs CONTAINERID)无需拷贝完整的id,一般写最开始的三至四个字符即可。
[root@tiejiang ~]# docker run centos yum install net-tools -y
如果yum不指定-y参数的话,yum命令会进入交互模式,需要用户输入命令来进行确认,在docker环境中是无法响应这种交互的。但使用docker run的-i -t参数就会响应这种交互,用户可以输入命令了,比如:
[root@tiejiang ~]# docker run -i -t centos yum install net-tools
REPOSITORY参数可以是新的镜像名字,也可以是旧的镜像名;如果和旧的镜像名和TAG都相同,会覆盖掉旧的镜像。
REPOSITORY参数可以是新的镜像名字,也可以是旧的镜像名;如果和旧的镜像名和TAG都相同,会覆盖掉旧的镜像。
默认等待10秒钟再杀死指定容器。可以使用-t参数来设置等待时间。
参数可以是容器的ID或者是镜像名(NAME:TAG)。
查看所有容器ID:[root@tiejiang ~]# docker ps -a -q 删除所有的容器:[root@tiejiang ~]# docker rm $(docker ps -a -q)
[root@tiejiang ~]# docker images centos REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE centos ifconfig b2bc733a55c4 18 minutes ago 262.6 MB centos latest d4350798c2ee 3 weeks ago 191.8 MB [root@tiejiang ~]# docker rmi centos:ifconfig Untagged: centos:ifconfig Deleted: b2bc733a55c4b2397ba32abeb95b4281ae64355f51959e8b6641afbdf2f2bc3a [root@tiejiang ~]# docker images centos REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE centos latest d4350798c2ee 3 weeks ago 191.8 MB
[root@tiejiang ~]# docker info Containers: 0 Images: 5 Storage Driver: aufs Root Dir: /var/lib/docker/aufs Backing Filesystem: extfs Dirs: 5 Dirperm1 Supported: false Execution Driver: native-0.2 Logging Driver: json-file Kernel Version: 3.10.5-3.el6.x86_64 Operating System: <unknown> CPUs: 1 Total Memory: 772.8 MiB Name: tiejiang.org ID: KOTH:LNC6:MYCT:JV4N:GD36:CZU5:LDV7:CL24:C55J:HZJE:RIPS:3LVA WARNING: No swap limit support
1、创建一个新容器并登入:docker run -i -t IMAGE /bin/bash
使用image创建container并进入交互模式,login shell是/bin/bash,现在可以自由的对容器进行操作了。最后使用exit退出容器。
注意:如果IMAGE参数不指定TAG,默认TAG为latest。
2、启动一个退出的容器:docker start CONTAINERID
3、attach到运行中的容器:docker attach CONTAINERID
[root@tiejiang ~]# docker run -i -t centos /bin/bash [root@e28c3bdc49b9 /]# exit exit [root@tiejiang ~]# docker ps -l CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e28c3bdc49b9 centos "/bin/bash" 10 seconds ago Exited (0) 5 seconds ago elegant_bohr [root@tiejiang ~]# docker start e28c e28c [root@tiejiang ~]# docker ps -l CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e28c3bdc49b9 centos "/bin/bash" 31 seconds ago Up 9 seconds elegant_bohr [root@tiejiang ~]# docker attach e28c