Skip to content

Commit fc88eb4

Browse files
committed
feat: add ext-remove, maybe fix apcu
1 parent b6843b7 commit fc88eb4

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

8.2.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN \
4040
#
4141
# php extensions
4242
&& docker-php-source extract \
43-
&& rm -f /usr/local/lib/php/extensions/no-debug-non-zts-20220829/intl.so /usr/local/etc/php/conf.d/docker-php-ext-intl.ini \
43+
&& docker-php-ext-remove apcu intl mognodb \
4444
&& pecl channel-update pecl.php.net \
4545
&& { php -m | grep gd || docker-php-ext-configure gd --with-freetype --with-jpeg --enable-gd; } \
4646
&& docker-php-ext-install-if $PHP_EXTENSIONS \

docker-php-ext-disable

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
extDir=$(php -r 'echo ini_get("extension_dir");')
6-
iniDir=$PHP_INI_DIR/conf.d/
6+
iniDir=$PHP_INI_DIR/conf.d
77

88
usage() {
99
echo "usage: $0 [options] module-name [module-name ...]"
@@ -31,6 +31,6 @@ for module; do
3131
done
3232

3333
[[ -n "$modules" ]] \
34-
&& rmIni=$(grep -lE "$modules" $PHP_INI_DIR/conf.d/*.ini) \
34+
&& rmIni=$(grep -lE "$modules" $iniDir/*.ini) \
3535
&& echo "$rmIni" \
3636
| xargs rm

docker-php-ext-remove

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
extDir=$(php -r 'echo ini_get("extension_dir");')
6+
7+
[[ "" = "$@" ]] && exit 0
8+
9+
docker-php-ext-disable $@
10+
11+
for module; do
12+
rm -rf $extDir/$module $extDir/$module.so
13+
done

0 commit comments

Comments
 (0)