docker_practice/image/download.md
2014-09-12 16:18:24 +08:00

12 lines
270 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

##下载images
现在将尝试下载training/sinatra镜像可以使用docker pull命令。
```
$ sudo docker pull training/sinatra
```
然后就可以使用这个image来启动容器了
```
$ sudo docker run -t -i training/sinatra /bin/bash
root@a8cb6ce02d85:/#
```