1.自动下载并且创建容器
Now verify that the installation has worked by downloading the ubuntu image and launching a container.
sudo docker run -i -t ubuntu /bin/bash
2.Docker 中文指南
这个网站说明的很清楚,对比了几个网站这个说明很直观易懂
-
docker ps
列出容器 -
docker logs
显示容器的标准输出 -
docker stop
停止正在运行的容器
http://www.widuu.com/chinese_docker/
3. Docker中文指南
http://dockerpool.com/
4.Docker 启用禁用网桥
sudo ifconfig docker0 down (禁用) sudo ifconfig docker0 up(启用)
参考地址:http://docker-doc.readthedocs.org/zh_CN/latest/installation/ubuntulinux.html