zoukankan      html  css  js  c++  java
  • docker 入门学习篇【基本命令与操作】

    [root@VM_225_102_centos ~]# docker version #查看版本
    Client:
     Version:      1.11.2
     API version:  1.23
     Go version:   go1.5.4
     Git commit:   b9f10c9
     Built:        Wed Jun  1 21:23:11 2016
     OS/Arch:      linux/amd64


    Server:
     Version:      1.11.2
     API version:  1.23
     Go version:   go1.5.4
     Git commit:   b9f10c9
     Built:        Wed Jun  1 21:23:11 2016
     OS/Arch:      linux/amd64

    ------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker search ubuntu #搜索一个叫做ubuntu的镜像
    NAME                              DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
    ubuntu                            Ubuntu is a Debian-based Linux operating s...   4217      [OK]       
    ubuntu-upstart                    Upstart is an event-based replacement for ...   65        [OK]       
    rastasheep/ubuntu-sshd            Dockerized SSH service, built on top of of...   29                   [OK]

    ...

    ------------------------------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker images  #查看本地docker镜像
    REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
    hello-world         latest              c54a2cc56cbb        3 days ago          1.848 kB

    --------------------------------------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker pull ubuntu #下载docker镜像
    Using default tag: latest
    latest: Pulling from library/ubuntu
    f069f1d21059: Downloading [============>                                      ] 12.18 MB/49.17 MB
    ecbeec5633cf: Download complete 
    ea6f18256d63: Download complete 
    54bde7b02897: Download complete 

    -------------------------------------------------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker run ubuntu echo 'hello world' #在docker容器中运行hello world
    hello world

    -----------------------------------------------------------------------------------------------------

    ##交互式运行,crtl+D退出时,直接关闭vm1,若想该虚拟镜像后台运行,可执行crtl+p+q

    [root@VM_225_102_centos ~]# docker  run -it --name vm1 ubuntu bash # #
    root@ecd6467938f3:/#

    ----------------------------------------------------------------------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker ps -a  ##查看建立的所有docker

    CONTAINER ID        IMAGE               COMMAND                CREATED             STATUS                         PORTS               NAMES
    ecd6467938f3        ubuntu              "bash"                 3 minutes ago       Up 3 minutes                                       vm1
    46123b6e2b80        ubuntu              "echo 'hello world'"   5 minutes ago       Exited (0) 5 minutes ago                           drunk_borg
    ca8ba487aba3        ubuntu              "/bin/bash"            5 minutes ago       Exited (0) 5 minutes ago                           kickass_mestorf
    0176b65406da        hello-world         "/hello"               About an hour ago   Exited (0) About an hour ago                       thirsty_bardeen
    -------------------------------------------------------------------------------------------------------------

    [root@VM_225_102_centos ~]# docker ps         #查看正在运行的docker
    CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
    ecd6467938f3        ubuntu              "bash"              3 minutes ago       Up 3 minutes                            vm1

    -------------------------------------------------------------------------------------------------------------------------------------------------------

    [root@foundation45 ~]# docker stop vm1 ##停止vm1
    [root@foundation45 ~]# docker start vm1 ##启动vm1
    [root@foundation45 ~]# docker attach vm1 ##当vm1后台运行时,用该命令调回前台,可进入其bash命令行
    [root@foundation45 ~]# docker rm vm1 ##删除vm1


    -------------------------------------------------------------------------------------------------------------







  • 相关阅读:
    http 请求code状态码
    uni-app实现弹窗遮罩
    小程序分享报错 Cannot read property 'apply' of null;at page XXX onShareAppMessage function
    mac下出现xcrun: error导致git、svn无法使用的解决办法
    uniapp 小程序实现自定义底部导航栏(tarbar)
    Python2.X和Python3.X中Tkinter模块的文件对话框、下拉列表的不同
    Mac 设置git的template
    每天一点点之vue框架开发
    uni-app开发小程序-使用uni.switchTab跳转后页面不刷新的问题
    小程序实现微信朋友圈时间显示效果
  • 原文地址:https://www.cnblogs.com/tyzZ001/p/5657173.html
Copyright © 2011-2022 走看看