1,常用命令
1 | # 查看安装的镜像 |
2,安装docker
mac 安装
3,dockerfile
创建dockerfile指令 vim Dockerfile
1
2FROM nginx
ADD ./ /usr/share/nginx/html/生成镜像
1
2# image 为镜像名字,. 为dockerfile所在的文件目录
docker build -t image .
1 | # 查看安装的镜像 |
mac 安装
创建dockerfile指令 vim Dockerfile
1 | FROM nginx |
生成镜像
1 | # image 为镜像名字,. 为dockerfile所在的文件目录 |