Created
February 18, 2017 15:38
-
Star
(254)
You must be signed in to star a gist -
Fork
(48)
You must be signed in to fork a gist
-
-
Save chronon/95911d21928cff786e306c23e7d1d3f3 to your computer and use it in GitHub Desktop.
List of docker-php-ext-install extension names
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Possible values for ext-name: | |
bcmath | |
bz2 | |
calendar | |
ctype | |
curl | |
dba | |
dom | |
enchant | |
exif | |
fileinfo | |
filter | |
ftp | |
gd | |
gettext | |
gmp | |
hash | |
iconv | |
imap | |
interbase | |
intl | |
json | |
ldap | |
mbstring | |
mcrypt | |
mysqli | |
oci8 | |
odbc | |
opcache | |
pcntl | |
pdo | |
pdo_dblib | |
pdo_firebird | |
pdo_mysql | |
pdo_oci | |
pdo_odbc | |
pdo_pgsql | |
pdo_sqlite | |
pgsql | |
phar | |
posix | |
pspell | |
readline | |
recode | |
reflection | |
session | |
shmop | |
simplexml | |
snmp | |
soap | |
sockets | |
spl | |
standard | |
sysvmsg | |
sysvsem | |
sysvshm | |
tidy | |
tokenizer | |
wddx | |
xml | |
xmlreader | |
xmlrpc | |
xmlwriter | |
xsl | |
zip |
❤️
extension: wddx
This extension is DEPRECATED and UNBUNDLED as of PHP 7.4.0. - https://www.php.net/manual/en/intro.wddx.php
Trying to follow the format above to enable sockets with PHP 8.1.2 but no luck.
RUN docker-php-ext-install sockets && docker-php-ext-enable sockets
Any ideas?
error: /usr/src/php/ext/interbase does not exist
@EdwinWalela This works for me with PHP 8.2, no need for the enable
part:
RUN docker-php-ext-install -j$(nproc) sockets
Anyone have any guidance for installing the tidy extension? We've tried to no avail.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!