docker_practice/image/download.md
2014-09-05 15:50:31 +08:00

8 lines
289 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
现在我们指定了一个imagetraining/sinatra我们可以使用docker pull命令来下载它
```
$ sudo docker pull training/sinatra
然后我们就可以使用这个image来启动容器了
$ sudo docker run -t -i training/sinatra /bin/bash
root@a8cb6ce02d85:/#
```