All Projects → nanoninja → Php Fpm

nanoninja / Php Fpm

Docker container to install and run PHP-FPM

Projects that are alternatives of or similar to Php Fpm

React Blur Image Loader
Blurred progressive image loader for React
Stars: ✭ 57 (-19.72%)
Mutual labels:  image
Deep Ranking
Learning Fine-grained Image Similarity with Deep Ranking is a novel application of neural networks, where the authors use a new multi scale architecture combined with a triplet loss to create a neural network that is able to perform image search. This repository is a simplified implementation of the same
Stars: ✭ 64 (-9.86%)
Mutual labels:  image
Imageslideshow
A Swift Image SlideShow for iOS
Stars: ✭ 68 (-4.23%)
Mutual labels:  image
Mrthumb
【拇指先生】 a simple easy video thumbnail provider,顺滑的获取视频缩略图,支持本地和网络视频,有问题大胆提Issues
Stars: ✭ 60 (-15.49%)
Mutual labels:  image
Lazy Vue
A small lazy image loader for Vue
Stars: ✭ 63 (-11.27%)
Mutual labels:  image
Docker Examples
There are many like it, but this one is mine.
Stars: ✭ 66 (-7.04%)
Mutual labels:  image
Silicompressor
A powerful, flexible and easy to use Video and Image compression library for Android.
Stars: ✭ 1,081 (+1422.54%)
Mutual labels:  image
Term Img Cli
Display images in iTerm
Stars: ✭ 70 (-1.41%)
Mutual labels:  image
Vimage
A simplistic image viewer for Windows, inspired by vjpeg.
Stars: ✭ 63 (-11.27%)
Mutual labels:  image
Imageminilab
opencv-python 应用
Stars: ✭ 68 (-4.23%)
Mutual labels:  image
Docker Ubuntu1804 Ansible
Ubuntu 18.04 LTS (Bionic) Docker container for Ansible playbook and role testing.
Stars: ✭ 61 (-14.08%)
Mutual labels:  image
Zimg Host
Simple image hosting service
Stars: ✭ 62 (-12.68%)
Mutual labels:  image
Pillow
The friendly PIL fork (Python Imaging Library)
Stars: ✭ 9,241 (+12915.49%)
Mutual labels:  image
Miniflix
Miniflix - A smaller version of Netflix powered by Cloudinary
Stars: ✭ 58 (-18.31%)
Mutual labels:  image
Picker
Picker - A CameraX based WhatsApp Style Image-Video Picker
Stars: ✭ 69 (-2.82%)
Mutual labels:  image
Fasterimage
🐎 find the size of an image without downloading the whole file. Supports batch requests.
Stars: ✭ 56 (-21.13%)
Mutual labels:  image
Tiny Site
图片优化
Stars: ✭ 65 (-8.45%)
Mutual labels:  image
Skrop
Image transformation service using libvips, based on Skipper.
Stars: ✭ 71 (+0%)
Mutual labels:  image
Sobel
Sobel Filter algorithm in JavaScript.
Stars: ✭ 69 (-2.82%)
Mutual labels:  image
Nova Advanced Image Field
🌄📐 A Laravel Nova advanced image field with cropping and resizing using Cropper.js and Intervention Image
Stars: ✭ 67 (-5.63%)
Mutual labels:  image

PHP-FPM Docker Image

Docker container to install and run PHP-FPM.

Build Status Automated Build

Supported branches and respective Dockerfile links

What is PHP-FPM

PHP-FPM (FastCGI Process Manager) is an alternative FastCGI implementation for PHP.

Getting image

sudo docker image pull nanoninja/php-fpm

Running your PHP script

Run the PHP-FPM image, mounting a directory from your host.

sudo docker container run --rm -v $(pwd):/var/www/html nanoninja/php-fpm php index.php

Running as server

sudo docker container run --rm --name phpfpm -v $(pwd):/var/www/html -p 3000:3000 nanoninja/php-fpm php -S="0.0.0.0:3000" -t="/var/www/html"

or using Docker Compose :

version: '3'
services:
  phpfpm:
    container_name: phpfpm
    image: nanoninja/php-fpm
    ports:
      - 3000:3000
    volumes:
      - /path/to/your/app:/var/www/html
    command: php -S="0.0.0.0:3000" -t="/var/www/html"

Logging

sudo docker container logs phpfpm

Installed extensions

sudo docker container run --rm nanoninja/php-fpm php -m

PHP Modules

  • bcmath
  • bz2
  • calendar
  • Core
  • ctype
  • curl
  • date
  • dom
  • exif
  • fileinfo
  • filter
  • ftp
  • gd
  • gettext
  • hash
  • iconv
  • imagick
  • imap
  • intl
  • json
  • ldap
  • libxml
  • mbstring
  • memcached
  • mongodb
  • mysqli
  • mysqlnd
  • openssl
  • pcre
  • PDO
  • pdo_mysql
  • pdo_pgsql
  • pdo_sqlite
  • pgsql
  • Phar
  • posix
  • readline
  • redis
  • Reflection
  • session
  • SimpleXML
  • soap
  • sockets
  • sodium
  • SPL
  • sqlite3
  • standard
  • tokenizer
  • xdebug
  • xml
  • xmlreader
  • xmlrpc
  • xmlwriter
  • xsl
  • Zend OPcache
  • zip
  • zlib

Zend Modules

  • Xdebug
  • Zend OPcache
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].