You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
continuous-integration/drone/push Build was killed
Details
|
7 months ago | |
---|---|---|
.drone.yml | 8 months ago | |
Dockerfile | 8 months ago | |
README.md | 8 months ago | |
build.sh | 8 months ago | |
rebuild.sh | 7 months ago |
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"