共计 1654 个字符,预计需要花费 5 分钟才能阅读完成。
本文讲述的是如何在原有的 Ubuntu 镜像上搭建 LNMP 开发环境,并生成新的镜像。
一、下载 ubuntu:16.04 镜像
docker pull ubuntu:16.04
二、运行 ubuntu 镜像
docker run -i -t ubuntu:16.04 bash
三、在 ubuntu 镜像中搭建 lnmp 环境
更新 ubuntu 系统
apt-get update
安装 php7.0
apt-get install php
安装 nginx
apt-get install nginx
安装 MySQL
apt-get install mysql*
启动 nginx、mysql、php7.0-fpm 服务
service nginx start
service mysql start
service php7.0-fpm start
配置 nginx
index index.php index.html index.htm index.nginx-debian.html;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
退出镜像
exit1
四、生成新的镜像
查看之前编辑的镜像 id
docker ps -l
保存之前编辑的镜像到一个新镜像
docker commit -m “ 提交信息 ” –author “ 作者 ” 镜像 id 新镜像名
五、运行新的镜像
docker run -d -p 80:80 -v /var/www/html:/var/www/html turtlell/lnmp:1.2 /sbin/init
其中 -d 是以 daemon 模式运行
-p 80:80 是将本地的 80 端口映射到容器的 80 端口
-v /var/www/html:/var/www/html 是将本地的 /var/www/html 目录挂载到容器的 /var/www/html 目录上,可以在本地的 /var/www/html 中编写代码
进入新镜像,启动 nginx、mysql、php7.0-fpm 服务
docker ps
docker exec -it 进程 id bash
访问 localhost
五、将新的镜像发布到线上
docker login
docker pull 镜像名: 版本号
更多 Docker 相关教程见以下内容:
Docker 安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm
Ubuntu 14.04 安装 Docker http://www.linuxidc.com/linux/2014-08/105656.htm
Ubuntu 使用 VNC 运行基于 Docker 的桌面系统 http://www.linuxidc.com/Linux/2015-08/121170.htm
阿里云 CentOS 6.5 模板上安装 Docker http://www.linuxidc.com/Linux/2014-11/109107.htm
Ubuntu 15.04 下安装 Docker http://www.linuxidc.com/Linux/2015-07/120444.htm
在 Ubuntu Trusty 14.04 (LTS) (64-bit)安装 Docker http://www.linuxidc.com/Linux/2014-10/108184.htm
在 Ubuntu 15.04 上如何安装 Docker 及基本用法 http://www.linuxidc.com/Linux/2015-09/122885.htm
Docker 的详细介绍:请点这里
Docker 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-11/137664.htm