Dockerized php-fpm service, build on top of official Debian images.
732
Dockerized php-fpm service, built on top of official Debian images with supervisor.
$docker pull thinegan/debian-php5
$docker run -d -P --name test_php thinegan/debian-php5
$docker port test_php 9000
0.0.0.0:32768
# Docker compose, example of spinning 1 php-fpm containers with mounted volume from host.
services:
phpserver1:
image: thinegan/debian-php5
container_name: phpfpm1
hostname: phpserver1
build: .
# Exposed to host machines
ports:
- "9001:9000"
volumes:
- /home/www/public_html/dev.timeclone.com:/home/www/public_html/dev.timeclone.com
If you run into any problems with this image, please check (and potentially file new) issues on the thinegan/debian-php5 repo, which is the source for this image.
Content type
Image
Digest
Size
218.2 MB
Last updated
over 6 years ago
docker pull thinegan/debian-php5