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
- Host: GitHub
- URL: https://github.com/kodeart/docker-php7-fpm
- Owner: kodeart
- License: mit
- Created: 2016-06-06T18:38:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-06T23:39:00.000Z (about 10 years ago)
- Last Synced: 2025-06-23T20:10:29.249Z (12 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```