zoukankan      html  css  js  c++  java
  • Docker -CentOS 6.5上安装

     开始安装daoker之旅:

    1、

    [root@localhost ~]# uname -r
    2.6.32-431.el6.x86_64


    2、

    [root@localhost ~]# cat /etc/issue
    CentOS release 6.5 (Final)
    Kernel 
     on an m

    注意其他的源可能导致你的内核和docker的版本不一致,需要升级内核至3.x。

    3、安装

    [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
    [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
    
    [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 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/

    CentOS 6/7系列安装Docker http://www.linuxidc.com/Linux/2014-07/104768.htm

    Docker的搭建Gitlab CI 全过程详解 http://www.linuxidc.com/Linux/2013-12/93537.htm

    Docker安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm

    在 Docker 中使用 MySQL http://www.linuxidc.com/Linux/2014-01/95354.htm

    在Ubuntu Trusty 14.04 (LTS) (64-bit)安装Docker http://www.linuxidc.com/Linux/2014-10/108184.htm

    Docker安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm

    Ubuntu 14.04安装Docker  http://www.linuxidc.com/linux/2014-08/105656.htm

    阿里云CentOS 6.5 模板上安装 Docker http://www.linuxidc.com/Linux/2014-11/109107.htm

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

    本文永久更新链接地址http://www.linuxidc.com/Linux/2015-01/111091.htm   

  • 相关阅读:
    laravel phpstorm IDE 代码提示
    vue的样式绑定
    asp.net mvc视图中使用entitySet类型数据时提示出错
    Linq to SQL 中将数字转换为字符串
    jquery submit()不能提交表单的解决方法
    命名空间“System.Web”中不存在类型或命名空间名称“Optimization”(是否缺少程序集引用?)
    没有为扩展名“.cshtml”注册的生成提供程序
    WP REST API: 设置和使用OAuth 1.0a Authentication(原文)
    解决"要执行请求的操作,WordPress需要访问您网页服务器的权限"
    Mysql添加用户错误:ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value解决方法
  • 原文地址:https://www.cnblogs.com/zhengah/p/4930113.html
Copyright © 2011-2022 走看看