docker 构建镜像 centos7 nginx php

#docker 构建镜像(Dockerfile)

  • centos 7.4.1078镜像制作
  • nginx镜像制作(以前面centos7镜像为基础)
  • Nginx+php镜像制作

更多操作实例,查看git里的readme文档

我的git网址 https://gitee.com/almi/docker

### 克隆文件到本目录
git clone https://gitee.com/almi/docker.git ### 构建镜像 almi/centos7 ,版本1708
cd docker/.centos7. #进入目录
docker build -t almi/centos7.: .
docker images #查看镜像 ### 运行容器centos7-,基于almi/centos7:1708镜像
docker run --name centos7- -dit almi/centos7.:
docker ps -l ### 进入容器
docker exec -it centos7- /bin/sh
ifconfig #查看ip地址
exit #退出,快捷键Ctrl+D ### 删除容器,删除镜像
docker rm -f centos7-
docker rmi almi/centos7.: #补充说明:构建文件centos-7.4.-docker.tar.xz来自docker官方
#https://github.com/CentOS/sig-cloud-instance-images/tree/CentOS-7.4.1708
上一篇:mysql 不是主键不能删除的保护问题解决办法?


下一篇:Geoserver+Openlayers+MySQL设计思想,GeoServer服务器搭建(Docker构建镜像)