CentOS6.5安裝Docker
筆者這里是用CnetOS6.5系統
開始安裝daoker之旅:
[root@localhost ~]# uname -r 2.6.32-431.el6.x86_64
[root@localhost ~]# cat /etc/issue CentOS release 6.5 (Final) Kernel \r on an \m
注意其他的源可能導致你的內核和docker的版本不一致,需要升級內核至3.x。
安裝:
[root@localhost ~]# rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm Retrieving http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm warning: /var/tmp/rpm-tmp.JN76fI: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY Preparing... ########################################### [100%] 1:epel-release ########################################### [100%] [root@localhost ~]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
[root@localhost ~]# yum -y install docker-io
啟動并設置開機自動啟動
[root@localhost ~]# service docker start Starting cgconfig service: [確定] Starting docker: [確定] [root@localhost ~]# chkconfig docker on
獲取cnetos鏡像
[root@localhost ~]# docker pull centos:latest centos:latest: The image you are pulling has been verified 511136ea3c5a: Pull complete 5b12ef8fd570: Pull complete 34943839435d: Downloading [===> ] 18.38 MB/232.5 MB 1h7m49s
#官方安裝方式docker pull imagename從docker的索引中心下載,imagename是鏡像名稱,例如docker pull ubuntu就是下載base ubuntu并且tag是latest。
我們還可以搜索基于 Fedora 和 Ubuntu 操作系統的容器。
[root@localhost ~]# docker search ubuntu [root@localhost ~]# docker search fedora
查看docker鏡像
[root@localhost ~]# docker images centos REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE centos latest 34943839435d Less than a second ago 224 MB
運行docker運行shell
[root@localhost ~]# docker run -i -t centos /bin/bash [root@2ce733141ece /]# [root@2ce733141ece /]# [root@2ce733141ece /]# [root@2ce733141ece /]#
停止容器
[root@localhost ~]# docker stop <CONTAINER ID>
刪除所有容器
docker rm $(docker ps -a -q)
查看docker的子命令,直接敲docker 或完整的docker help 就可以
常用命令
總結一下常用命令:
其中<>闊起來的參數為必選,[]闊起來為可選
docker version 查看docker的版本號,包括客戶端、服務端、依賴的Go等
docker info 查看系統(docker)層面信息,包括管理的images, containers數等
docker search <image> 在docker index中搜索image
docker pull <image> 從docker registry server 中下拉image
docker push <image|repository> 推送一個image或repository到registry
docker push <image|repository>:TAG 同上,指定tag
docker inspect <image|container> 查看image或container的底層信息
docker images TODO filter out the intermediate image layers (intermediate image layers 是什么)
docker images -a 列出所有的images
docker ps 默認顯示正在運行中的container
docker ps -l 顯示最后一次創建的container,包括未運行的
docker ps -a 顯示所有的container,包括未運行的
docker logs <container> 查看container的日志,也就是執行命令的一些輸出
docker rm <container...> 刪除一個或多個container
docker rm `docker ps -a -q` 刪除所有的container
docker ps -a -q | xargs docker rm 同上, 刪除所有的container
docker rmi <image...> 刪除一個或多個image
docker start/stop/restart <container> 開啟/停止/重啟container
docker start -i <container> 啟動一個container并進入交互模式
docker attach <container> attach一個運行中的container
docker run <image> <command> 使用image創建container并執行相應命令,然后停止
docker run -i -t <image> /bin/bash 使用image創建container并進入交互模式, login shell是/bin/bash
docker run -i -t -p <host_port:contain_port> 將container的端口映射到宿主機的端口
docker commit <container> [repo:tag] 將一個container固化為一個新的image,后面的repo:tag可選
docker build <path> 尋找path路徑下名為的Dockerfile的配置文件,使用此配置生成新的image
docker build -t repo[:tag] 同上,可以指定repo和可選的tag
docker build - < <dockerfile> 使用指定的dockerfile配置文件,docker以stdin方式獲取內容,使用此配置生成新的image
docker port <container> <container port> 查看本地哪個端口映射到container的指定端口,其實用docker ps 也可以看到
http://www.linuxidc.com/Linux/2014-07/104595.htm
Centos7安裝docker 點擊這里 http://linux.cn/article-4340-1.html
docker入門與實戰點擊這里 http://www.dockerpool.com/static/books/docker_practice/index.html
docker到底是什么點擊這里 http://cloud.51cto.com/art/201411/457407.htm
CentOS6.5內核升級看這里http://cn.soulmachine.me/blog/page/3/
docker other http://docker.widuu.com/