docker run -i -t ubuntu /bin/bash
docker run -i -t lanhong/ubuntu /bin/bash
-i :标准输出到当前terminal
-t: terminal
ubuntu: image, 从公共仓库pull下来的容器
/bin/bash: command
查看某个容器ID
docker ps -a # 看到所有容器, 包括未运行,停止运行的
Icon
docker ps # 仅查看正在运行的容器
查看images
docker imges
提交容器
docker commit 78b96377e546 lanhong/ubuntu
78b96377e546: 容器ID
lanhong/ubuntu 给容器命的名,格式:docker用户名/仓库名
构建镜像,在包含Dockerfile的目录下运行如下命令
docker build -t lanhong/ssh . #”."表示当前目录
其他命令
docker stop container_ID
docker rm container_ID
docker rmi image
docker start #重启stop或kill了的image
原文地址:http://blog.51cto.com/4951326/2097360