1. 程式人生 > >三、Docker鏡像的相關操作

三、Docker鏡像的相關操作

arch python 命令 training search pyhton image xxx ima

一、查看本地鏡像:

docker images

二、使用某個鏡像來運行容器:

docker run -t -i xxxx(鏡像名):xx.xx(版本,不帶即最新) /bin/bash

docker run -t -i ubuntu:15.10 /bin/bash

三、下載鏡像:

docker pull xxx(名):xxxx(版本)

四、查找鏡像:

網站:https://hub.docker.com/

命令:docker search xxx(鏡像名) docker search nginx(查找nginx相關鏡像)

五、運行容器,參考二、(4),可重命名容器

docker run -d -p 80:5000 --name pyhtonWeb training/webapp python app.py

--name xxx,重命名容器

三、Docker鏡像的相關操作