摘要:部署一个应用程序的过程绝对是一个噩梦般的经历。准备开始,我们创建一个一个中包含怎样创建你想要的镜像的指令。使用告知使用官方社区最新版本的可用镜像。这个镜像在的可用版本。
注:本文由 Mike Ebinum 编写,原文地址 Creating a Docker Container to run PHP, NGINX and Hip Hop VM (HHVM)
对于 Docker,我感到非常的兴奋,作为一个开发人员,在早些时候,我花费了太多的时间陷入了 .NET 工作中我不喜欢的几件事情中,如在不同的环境中部署和测试。部署一个 web 应用程序的过程绝对是一个噩梦般的经历。并且甚至在那之后,我迁移到基于 UNIX 平台开发,然后使用开源的工具/语言,如 Node, Java, Scala, PHP 等等,我发现同样的部署问题一次又一次的发生。
使用如 Docker 这样的工具,你可以让你开发环境的配置精确的如生产环境的镜像一样。部署一个你的 web 应用程序的容器,任何东西都被配置了,你再也不用太担心关于部署的那些麻烦事。
如果你是一个 Docker 的新手,并且不是十分确定它是什么,以下这些文章能给你一个完美的学习纲要,去吧,读完它们,我等着。
Docker Lightweight linux containers for consistent development and deployment
Docker: Using Linux Containers to Support Portable Application deployment
作为一个懒惰的程序员,我的梦想成真了,只要做一次,然后你再也不用为它操心了(在一定程度上),无论如何你都不会来到这里对我咆哮,在这篇文章中,我将向你展示,为你开发环境基于以下怎样创建并且运行一个 Docker 容器。
CentOS
Nginx web server
PHP with Hip Hop VM (HHVM)
Dockerfile准备开始,我们创建一个 Dockerfile - 一个 Dockerfile 中包含怎样创建你想要的镜像的指令。
FROM centos:centos6 MAINTAINER Mike Ebinum, hello@seedtech.io使用 Cent OS 6.x
告知 Docker 使用官方社区最新版本的 CentOS 6.x 可用镜像。
更新镜像安装所有最新版本的包更新,并且把 Red Hat EPEL 的仓库加入可用的仓库列表。
RUN yum update -y >/dev/null && yum install -y http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm && curl -L -o /etc/yum.repos.d/hop5.repo "http://www.hop5.in/yum/el6/hop5.repo"安装包
安装 supervisord - 我们将使用这个配置和控制运行在容器中的进程 -, nginx, php, 一些 PHP 的开发包以及 Facebook 的 hhvm
RUN yum install -y python-meld3 http://dl.fedoraproject.org/pub/epel/6/i386/supervisor-2.1-8.el6.noarch.rpm RUN ["yum", "-y", "install", "nginx", "php", "php-mysql", "php-devel", "php-gd", "php-pecl-memcache", "php-pspell", "php-snmp", "php-xmlrpc", "php-xml","hhvm"]配置 Nginx, HHVM 和 Supervisord
为 nginx 创建目录,并且把 index.php 文件加入 nginx 来展现。
RUN mkdir -p /var/www/html && chmod a+r /var/www/html && echo "" > /var/www/html/index.php
下一组指令是:
为 HHVM 添加一个配置文件,然后重起我们的 HHVM 服务
为 Supervisord 添加一个配置文件,然后启动 Nginx 和 HHVM
ADD config.hdf /etc/hhvm/config.hdf RUN service hhvm restart ADD nginx.conf /etc/nginx/conf.d/default.conf ADD supervisord.conf /etc/supervisord.conf RUN chkconfig supervisord on && chkconfig nginx on
添加一个 shell 脚本 /run.sh,当 Docker 容器正在运行的时候将启动
run.sh
#!/bin/bash set -e -x echo "starting supervisor in foreground" supervisord -n
ADD scripts/run.sh /run.sh RUN chmod a+x /run.sh EXPOSE 22 80 ENTRYPOINT ["/run.sh"]
构建容器,并且打 tag
docker build -t centos-nginx-php5-hhvm .
现在我们有一个全功能的容器,我们可以像下面这样运行他:
docker run -d -p 80:80 centos-nginx-php5-hhvm
如果你已经有本地的服务已经在运行并且占用了 80 端口,你能很容易的的改变容器的对外端口。
这个 Docker 镜像在 docker registry 的可用版本。
Dockerfile完整的 Dockerfile 如下
# DOCKER-VERSION 1.0.0 FROM centos:centos6 MAINTAINER Mike Ebinum, hello@seedtech.io # Install dependencies for HHVM # yum update -y >/dev/null && RUN yum install -y http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm && curl -L -o /etc/yum.repos.d/hop5.repo "http://www.hop5.in/yum/el6/hop5.repo" # Install supervisor RUN yum install -y python-meld3 http://dl.fedoraproject.org/pub/epel/6/i386/supervisor-2.1-8.el6.noarch.rpm #install nginx, php, mysql, hhvm RUN ["yum", "-y", "install", "nginx", "php", "php-mysql", "php-devel", "php-gd", "php-pecl-memcache", "php-pspell", "php-snmp", "php-xmlrpc", "php-xml","hhvm"] # Create folder for server and add index.php file to for nginx RUN mkdir -p /var/www/html && chmod a+r /var/www/html && echo "" > /var/www/html/index.php #Setup hhvm - add config for hhvm ADD config.hdf /etc/hhvm/config.hdf RUN service hhvm restart # ADD Nginx config ADD nginx.conf /etc/nginx/conf.d/default.conf # ADD supervisord config with hhvm setup ADD supervisord.conf /etc/supervisord.conf #set to start automatically - supervisord, nginx and mysql RUN chkconfig supervisord on && chkconfig nginx on ADD scripts/run.sh /run.sh RUN chmod a+x /run.sh EXPOSE 22 80 #Start supervisord (which will start hhvm), nginx ENTRYPOINT ["/run.sh"]
在这篇文章中提到的其他的可用文件在 Github 上。
下一步?太棒了,我们现在有了一个环境配置,但我如何运行PHP应用程序?好问题,我将做后续的文章说明通过使用这个容器如何安装和配置PHP应用程序。订阅这个博客, 在 twitter 关注 @mikeebinum 和 @SEEDtechio 来获得更新
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/28096.html
摘要:部署一个应用程序的过程绝对是一个噩梦般的经历。准备开始,我们创建一个一个中包含怎样创建你想要的镜像的指令。使用告知使用官方社区最新版本的可用镜像。这个镜像在的可用版本。 注:本文由 Mike Ebinum 编写,原文地址 Creating a Docker Container to run PHP, NGINX and Hip Hop VM (HHVM) showImg(ht...
摘要:测试运行多次并取平均值。文章数量测试的基准测试基准测试结果基准测试结果基准测试结果基准测试结果基准测试结果基准测试结果不支持再次成为冠军请注意的运行环境需要或以上。同时,再次不能正常工作并抛出错误。 showImg(https://segmentfault.com/img/remote/1460000013690286); 我们每年都会尝试深入了解不同版本的 PHP 和 HHVM 在各...
摘要:创建完成后,执行重新加载配置文件创建数据库在腾讯云的数据库管理页点击登录,进入到管理控制的页面用你初始化时设置的密码登录。 推荐理由: 再小的的个体也有自己的品牌;再小的个体也有自己的网站。对于像我这样的小白来说,能搭建一个属于自己的网站,那是一件多么牛逼的事,呵呵哒!至少我觉得是这样;这次逛腾讯云技术论坛时看到这篇文章,我觉得对于像我这样的小白用户,觉得是一篇非常不错的教程,所以在此...
阅读 3497·2021-11-18 10:02
阅读 3061·2019-08-29 18:34
阅读 3361·2019-08-29 17:00
阅读 396·2019-08-29 12:35
阅读 699·2019-08-28 18:22
阅读 1854·2019-08-26 13:58
阅读 1636·2019-08-26 10:39
阅读 2654·2019-08-26 10:11