Sign inSign up

thinegan/debian-php7

By thinegan

Updated over 8 years ago

Dockerized php-fpm service, build on top of official Debian images.

Image
0

213

thinegan/debian-php7 repository overview

debian-php7

Dockerized php-fpm service, built on top of official Debian images with supervisor.

Image tags

  • thinegan/debian-php7:latest (Debian GNU/Linux 9)

Installed packages

Image specific:

  • php-fpm - v7.2.3

Config:

  • Dependencies Package:
    • mysqli
    • gd
  • php.ini setup path: /usr/local/etc/php/conf.d/php.ini

Run example

$docker pull thinegan/debian-php7
$docker run -d -p 9000:9000 --name testphp thinegan/php7:latest

# Docker compose, example of spinning 1 php-fpm containers with mounted volume from host.
services:
  phpserver1:
    image: thinegan/php7:latest
    container_name: phpfpm1
    hostname: phpserver1
    build: .
    # Exposed to host machines
    ports:
      - "9000"
    volumes:
      - /home/www/public_html/dev.crytera.com:/home/www/public_html/dev.crytera.com
      - ./etc/php/php.ini:/usr/local/etc/php/conf.d/php.ini

Issues

If you run into any problems with this image, please check (and potentially file new) issues on the thinegan/debian-php7 repo, which is the source for this image.

Tag summary

Content type

Image

Digest

Size

201 MB

Last updated

over 8 years ago

docker pull thinegan/debian-php7