标签:dock 容器 系统 inux img 拉取 进入容器 基本 containe
1、docker pull [OPTIONS] NAME[:TAG] //拉取、镜像
2、docker images[OPTION] [REPOSITORY[:TAG]] //查看镜像
3、docker docker run [OPTION] IMAGE[:TAG] [COMMAND] [ARG...] //运行
eg:docker run hello-world
4、docker run -d imageName #在后台启动一个容器,并打印出容器id
docker exec -i -t containerId /bin/bash # 以交互的方式进入容器,就相当一个新linux系统
标签:dock 容器 系统 inux img 拉取 进入容器 基本 containe
原文地址:http://www.cnblogs.com/yang218/p/7140830.html