zoukankan      html  css  js  c++  java
  • [Docker] Docker Client in Action

    Pull the docker image:

    docker pull hello-world

    Show all the images:

    docker images

    Remove the image:

    docker rmi <image_id>

    Run the image:

    docker run hello-world
    
    docker run -p 80:80 kitematic/hello-world-nginx //Run kitematic/hello-world-nginx image on (-p) port (local)80:80(to nginx 80)

    Once run the images, you can see the webpage the your docker site url.

    List all the running containers:

    docker ps

    List all the containers:

    docker ps -a

    Remove the container:

    docker rm <container_id>

    After delete container, the images will still be left, if you want to delete the image
    just do `docker rmi <iamge_id>`

    Stop the container:

    docker stop <container_id>

  • 相关阅读:
    195
    194
    193
    192
    191
    190
    Oracle 11g使用rman从单实例迁移到RAC
    RESTful API 设计指南
    Oracle GoldenGate(OGG)- 超级详细
    【转】Oracle GoldenGate OGG管理员手册
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5429169.html
Copyright © 2011-2022 走看看