mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-23 14:42:25 +00:00
Merge pull request #387 from cytopia/rdkafka
Fixes #385 Adding rdkafka-enabled PHP container
This commit is contained in:
commit
a8eaabda4f
@ -14,7 +14,7 @@ putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
|
||||
|
||||
|
||||
$DEVILBOX_VERSION = 'v0.15';
|
||||
$DEVILBOX_DATE = '2018-09-14';
|
||||
$DEVILBOX_DATE = '2018-09-27';
|
||||
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
|
||||
|
||||
//
|
||||
|
@ -570,7 +570,7 @@ Well-known and popular tools will be at your service as well:
|
||||
|
||||
The Devilbox is a development stack, so it is made sure that a lot of PHP modules are available out of the box in order to work with many different frameworks.
|
||||
|
||||
> *amqp, apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, mcrypt, memcache, memcached, mongodb, msgpack, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, phalcon, Phar, posix, pspell, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib*
|
||||
> *amqp, apcu, bcmath, bz2, calendar, Core, ctype, curl, date, dba, dom, enchant, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, igbinary, imagick, imap, interbase, intl, json, ldap, libxml, mbstring, mcrypt, memcache, memcached, mongodb, msgpack, mysqli, mysqlnd, openssl, pcntl, pcre, PDO, pdo_dblib, PDO_Firebird, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, phalcon, Phar, posix, pspell, rdkafka, readline, recode, redis, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, sodium, SPL, sqlite3, standard, swoole, sysvmsg, sysvsem, sysvshm, tidy, tokenizer, uploadprogress, wddx, xdebug, xml, xmlreader, xmlrpc, xmlwriter, xsl, Zend OPcache, zip, zlib*
|
||||
|
||||
PHP modules can be enabled or disabled on demand to reflect the state of your target environment.
|
||||
|
||||
|
@ -95,7 +95,7 @@ services:
|
||||
# PHP / HHVM
|
||||
# ------------------------------------------------------------
|
||||
php:
|
||||
image: devilbox/php-fpm:${PHP_SERVER:-7.0}-work-0.39
|
||||
image: devilbox/php-fpm:${PHP_SERVER:-7.0}-work-0.40
|
||||
|
||||
##
|
||||
## All .env variables
|
||||
|
@ -1200,11 +1200,11 @@ PHP_MODULES_DISABLE
|
||||
|
||||
Disable any PHP modules in a comma separated list.
|
||||
|
||||
+-------------------------+--------------------------------------+------------------+
|
||||
| Name | Allowed values | Default value |
|
||||
+=========================+======================================+==================+
|
||||
| ``PHP_MODULES_DISABLE`` | comma separated list of module names | ``swoole`` |
|
||||
+-------------------------+--------------------------------------+------------------+
|
||||
+-------------------------+--------------------------------------+--------------------+
|
||||
| Name | Allowed values | Default value |
|
||||
+=========================+======================================+====================+
|
||||
| ``PHP_MODULES_DISABLE`` | comma separated list of module names | ``rdkafka,swoole`` |
|
||||
+-------------------------+--------------------------------------+--------------------+
|
||||
|
||||
Example:
|
||||
|
||||
|
@ -454,7 +454,7 @@ PHP_MODULES_ENABLE=
|
||||
###
|
||||
### PHP_MODULES_DISABLE=xdebug,imagick,swoole
|
||||
###
|
||||
PHP_MODULES_DISABLE=swoole
|
||||
PHP_MODULES_DISABLE=rdkafka,swoole
|
||||
|
||||
|
||||
###
|
||||
|
Loading…
Reference in New Issue
Block a user