An open API service indexing awesome lists of open source software.

https://github.com/kodeart/docker-php7-fpm

Dockerized PHP7 with Supervisor and PHP extensions
https://github.com/kodeart/docker-php7-fpm

Last synced: 4 months ago
JSON representation

Dockerized PHP7 with Supervisor and PHP extensions

Awesome Lists containing this project

README

          

mihailbinev/php7-fpm
====================

With

* Supervisor, to manage the PHP-FPM

PHP extensions:

* bcmath
* ctype
* dom
* gettext
* intl
* json
* mbstring
* mcrypt
* mysqli
* opcache
* pcntl
* pdo
* pdo_mysql
* pdo_pgsql
* pdo_sqlite
* simplexml
* shmop
* xml
* zip

Build and run
-------------

```sh
docker build -t php7 .

docker run --rm -it php7

# to find the running container id with image name "php7"
docker ps

# after that you can enter the container
docker exec -it /bin/bash
```