https://github.com/ivan1993spb/docker-php7-fpm-all-extensions
Docker PHP7 fpm all extensions dockerfile
https://github.com/ivan1993spb/docker-php7-fpm-all-extensions
all-extensions docker fpm php php7 php71
Last synced: about 1 month ago
JSON representation
Docker PHP7 fpm all extensions dockerfile
- Host: GitHub
- URL: https://github.com/ivan1993spb/docker-php7-fpm-all-extensions
- Owner: ivan1993spb
- License: mit
- Created: 2016-12-03T13:55:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-07T08:41:30.000Z (over 9 years ago)
- Last Synced: 2025-06-09T23:06:04.991Z (12 months ago)
- Topics: all-extensions, docker, fpm, php, php7, php71
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker PHP7 fpm all extensions
## Pull docker image
```
docker pull ivan1993spb/php7-fpm-all-extensions
```
## Installed extensions
- bz2
- curl
- exif
- iconv
- imap
- intl
- gd
- json
- mbstring
- mcrypt
- mysqli
- opcache
- pdo
- pdo_mysql
- pdo_pgsql
- pdo_sqlite
- pgsql
- readline
- soap
- xml
- xmlrpc
- xsl
- zip
## Nginx server config example
```
server {
listen 80;
root /var/www;
server_name localhost;
error_log /var/log/nginx/localhost.error.log;
access_log /var/log/nginx/localhost.access.log;
location / {
fastcgi_index index.php;
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
}
}
```