1
0
Fork 0
Go to file
Pim van den Berg 4fcc828064 init 2022-10-21 11:15:46 +02:00
.drone.yml init 2022-10-21 11:15:46 +02:00
Dockerfile init 2022-10-21 11:15:46 +02:00
README.md init 2022-10-21 11:15:46 +02:00
build.sh init 2022-10-21 11:15:46 +02:00
rebuild.sh init 2022-10-21 11:15:46 +02:00

README.md

PHP FPM Docker container

  • Debian slim based image
  • PHP FPM

Supported tags and respective Dockerfile links

Usage

Environment variables

Key Format Description

docker run

$ docker run -it \
    --name php-fpm \
    -p 9000:9000 \
    pommib/php-fpm:latest

docker-compose

version: "3"

services:
  php-fpm:
    container_name: php-fpm
    image: pommib/php-fpm:latest
    ports:
    - "9000:9000/tcp"