Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit c028dbd

Browse files
authored
Merge pull request #84 from jdeathe/centos-6-develop
Release changes for 1.5.0
2 parents 7d2c9e1 + a3a25c6 commit c028dbd

13 files changed

+959
-165
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages

Dockerfile

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# CentOS-6, Apache 2.2, PHP 5.3, PHP Memcached 1.0, PHP APC 3.1.
55
#
66
# =============================================================================
7-
FROM jdeathe/centos-ssh-apache-php:centos-6-1.4.5
7+
FROM jdeathe/centos-ssh-apache-php:centos-6-1.5.0
88

99
MAINTAINER James Deathe <james.deathe@gmail.com>
1010

@@ -13,7 +13,7 @@ MAINTAINER James Deathe <james.deathe@gmail.com>
1313
# -----------------------------------------------------------------------------
1414
RUN rpm --rebuilddb \
1515
&& yum -y erase \
16-
php-5.3.3-46.el6_6 \
16+
php-5.3.3-48.el6_8 \
1717
&& yum --setopt=tsflags=nodocs -y install \
1818
fcgi-2.4.0-12.el6 \
1919
mod_fcgid-2.3.9-1.el6 \
@@ -26,12 +26,15 @@ RUN rpm --rebuilddb \
2626
# -----------------------------------------------------------------------------
2727
# Copy files into place
2828
# -----------------------------------------------------------------------------
29-
ADD etc/services-config/httpd/conf.d/fcgid.conf /etc/services-config/httpd/conf.d/
30-
RUN ln -sf /etc/services-config/httpd/conf.d/fcgid.conf /etc/httpd/conf.d/fcgid.conf
29+
ADD etc/services-config/httpd/conf.d/fcgid.conf \
30+
/etc/services-config/httpd/conf.d/
31+
RUN ln -sf \
32+
/etc/services-config/httpd/conf.d/fcgid.conf \
33+
/etc/httpd/conf.d/fcgid.conf
3134

3235
# -----------------------------------------------------------------------------
3336
# Set default environment variables used to configure the service container
3437
# -----------------------------------------------------------------------------
35-
ENV HTTPD /usr/sbin/httpd.worker
38+
ENV HTTPD="/usr/sbin/httpd.worker"
3639

3740
CMD ["/usr/bin/supervisord", "--configuration=/etc/supervisord.conf"]

0 commit comments

Comments
 (0)