PHP 5.3 reached EOL on 14 Aug 2014 and thus, official docker support was dropped. I still needed to run 5.3 so I built this image based on the latest official builds of PHP.
PHP is a server-side scripting language designed for web development, but which can also be used as a general-purpose programming language. PHP can be added to straight HTML or it can be used with a variety of templating engines and web frameworks. PHP code is usually processed by an interpreter, which is either implemented as a native module on the web-server or as a common gateway interface (CGI).
For PHP projects run through the command line interface (CLI), you can do the following.
FROM reallyenglish/php:5.3-apache
COPY . /var/www/html
Then, run the commands to build and run the Docker image:
docker build -t my-php-app .
docker run -it --rm --name my-running-app -p 8080:80 my-php-app
To install additional modules use a Dockerfile
like this:
FROM reallyenglish/php:5.3-apache
# Installs curl
RUN docker-php-ext-install curl
Then build the image:
$ docker build -t my-php-app .
If you don't want to include a Dockerfile
in your project, it is sufficient to do the following:
docker run -it --rm --name my-php-app -v "$PWD":/var/www/html reallyenglish/php:5.3-apache
- helderco for the
fpm
version - eugeneware for the
apache
version
View license information for the software contained in this image.