docker入门1-docker container
image和container介绍 一个image是一个可被docker执行的包,它包括程序运行的所有东西,包括代码,运行时,库,环境变量和配置文件。 一个container是image在内存中的运行实例,一个image可以产生多个container实例。 docker container命令 查看docker版本 # docker --version Docker version 18.09.2, build 6247962 使用 docker version (不带 -- )会得到更详细的版本信息. 查看docker状态 docker info 测试docker安装 docker run hello-world 测试运行 hello-world image. docker image ls 或 docker images 列出所有已下载的image. docker container ls --all 列出所有container. 构建docker app app.dockerfile # use an official python runtime as a parent image FROM python:2.7-slim # set the working directory to /app WORKDIR /app # copy the current