Image running apache2 with php, installation via Apt
1.0K
Dockerfile to build apache2 with PHP using Apt
Pull the latest version of the image from the docker index. This is the recommended method of installation as it is easier to update image in the future. These builds are performed by the Docker Trusted Build service.
docker pull r0mdau/apache2-php:latest
git clone https://github.com/r0mdau/docker-images.git
cd docker-images/apache2-php/
docker build -t r0mdau/apache2-php .
docker run --name apache2-php -p 80:80 -v /pathToProject:/var/www/html:rw -v /pathToVhost:/etc/apache2/sites-enabled:ro -d r0mdau/apache2-php:latest
Path to vhost is not mandatory.
Dockerfile example :
FROM r0mdau/apache2-php:latest
RUN apt-get update
RUN apt-get install -y YOURPACKAGE
CMD ["apache2ctl", "-D", "FOREGROUND"]
Content type
Image
Digest
sha256:d0366bb26…
Size
115.3 MB
Last updated
about 10 years ago
docker pull r0mdau/apache2-php