🗃️ Committing everything that changed 🗃️
Some checks failed
release-tag / release-image (push) Failing after 14m10s

rootfs/root/docker/setup/05-custom.sh
rootfs/root/docker/setup/06-post.sh
This commit is contained in:
casjay 2024-09-11 19:51:35 -04:00
parent b14fd0cbfd
commit 398a18d092
Signed by untrusted user who does not match committer: jason
GPG Key ID: 1AB309F42A764145
2 changed files with 3 additions and 3 deletions

View File

@ -28,8 +28,8 @@ BIN_DIR="/usr/local/bin"
DOWNLOAD_LINK="https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions"
EXT_ADDITIONAL="@composer @fix_letsencrypt"
EXT_INSTALLED="$([ -n "$(type -P 'php')" ] && php -m | awk '{print $1}' | grep -Fv '[' | grep -v '^$' | tr '[:upper:]' '[:lower:]')"
EXT_LIST="bcmath bz2 calendar cgi common ctype curl dba dev doc dom embed enchant exif ffi fileinfo fpm ftp gd gettext gmp iconv imap intl ldap litespeed mbstring mysqli mysqlnd odbc opcache openssl pcntl pdo pdo_dblib pdo_mysql pdo_odbc "
EXT_LIST+="pdo_pgsql pdo_sqlite pear pgsql phar phpdbg posix pspell session shmop simplexml snmp soap sockets sodium sqlite3 sysvmsg sysvsem sysvshm tidy tokenizer xml xmlreader xmlwriter xsl zip pecl-memcached pecl-mcrypt pecl-mongodb pecl-redis"
EXT_LIST="bcmath bz2 calendar cgi common ctype curl dba dom enchant exif ffi fileinfo fpm ftp gd gettext gmp iconv imap intl ldap litespeed mbstring mysqli mysqlnd odbc opcache openssl pcntl pdo pdo_dblib pdo_mysql pdo_odbc "
EXT_LIST+="pdo_pgsql pdo_sqlite pear pgsql phar phpdbg posix pspell session shmop simplexml snmp soap sockets sodium sqlite3 sysvmsg sysvsem sysvshm tidy tokenizer xml xmlreader xmlwriter xsl zip memcached mcrypt mongodb redis xdebug"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Main script
curl -sSLf -o "$BIN_DIR/install-php-extensions" "$DOWNLOAD_LINK" && chmod +x "$BIN_DIR/install-php-extensions" || exit 1

View File

@ -41,6 +41,6 @@ ln -sf "$$ETC_DIR/etc/php" "/etc/php"
ln -sf "$$ETC_DIR/etc/php-fpm" "/etc/php-fpm"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Set the exit code
exitCode=$?
exitCode=0
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
exit $exitCode