Skip to content

Commit

Permalink
Updated PHP versions
Browse files Browse the repository at this point in the history
- PHP 5.3.28 -> 5.3.29
- PHP 5.4.24 -> 5.4.32
- PHP 5.5.8 -> 5.5.16
  • Loading branch information
thaJeztah committed Sep 6, 2014
1 parent 697daf0 commit 50914a9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Expand Up @@ -41,9 +41,9 @@ COPY phpfarm /phpfarm/src/
# compile, then delete sources (saves space)
RUN cd /phpfarm/src && \
./compile.sh 5.2.17 && \
./compile.sh 5.3.28 && \
./compile.sh 5.4.24 && \
./compile.sh 5.5.8 && \
./compile.sh 5.3.29 && \
./compile.sh 5.4.32 && \
./compile.sh 5.5.16 && \
rm -rf /phpfarm/src && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -8,9 +8,9 @@ different PHP versions:
Port | PHP Version
-----|-------------
8052 | 5.2.17
8053 | 5.3.28
8054 | 5.4.24
8055 | 5.5.8
8053 | 5.3.29
8054 | 5.4.32
8055 | 5.5.16

Building the image
------------------
Expand Down Expand Up @@ -42,7 +42,7 @@ local machine. The current working directory will be used as the document root f
the Apache server and the server it self will run with the same user id as your current
user.

docker run -rm -t -i -e APACHE_UID=$UID -v $PWD:/var/www:rw -p 8052:8052 -p 8053:8053 -p 8054:8054 -p 8055:8055 splitbrain/phpfarm
docker run --rm -t -i -e APACHE_UID=$UID -v $PWD:/var/www:rw -p 8052:8052 -p 8053:8053 -p 8054:8054 -p 8055:8055 splitbrain/phpfarm

Above command will also remove the container again when the process is aborted with
CTRL-C. While running the Apache and PHP error log is shown on STDOUT.
Expand Down
2 changes: 1 addition & 1 deletion apache/sites-available/php-5.3
Expand Up @@ -14,7 +14,7 @@
</Directory>


FCGIWrapper /phpfarm/inst/php-5.3.28/bin/php-cgi .php
FCGIWrapper /phpfarm/inst/php-5.3.29/bin/php-cgi .php
AddHandler fcgid-script .php

LogLevel warn
Expand Down
2 changes: 1 addition & 1 deletion apache/sites-available/php-5.4
Expand Up @@ -14,7 +14,7 @@
</Directory>


FCGIWrapper /phpfarm/inst/php-5.4.24/bin/php-cgi .php
FCGIWrapper /phpfarm/inst/php-5.4.32/bin/php-cgi .php
AddHandler fcgid-script .php

LogLevel warn
Expand Down
2 changes: 1 addition & 1 deletion apache/sites-available/php-5.5
Expand Up @@ -14,7 +14,7 @@
</Directory>


FCGIWrapper /phpfarm/inst/php-5.5.8/bin/php-cgi .php
FCGIWrapper /phpfarm/inst/php-5.5.16/bin/php-cgi .php
AddHandler fcgid-script .php

LogLevel warn
Expand Down

0 comments on commit 50914a9

Please sign in to comment.