Skip to content

Commit

Permalink
Release 7.7.3 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Dec 5, 2023
1 parent 6568eab commit d3c0c49
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.7.3 2023-12-05 <dave at tiredofit dot ca>

### Changed
- Change build for Alpine PHP 8.3 to not include 4 PECL extensions


## 7.7.2 2023-11-28 <dave at tiredofit dot ca>

### Reverted
Expand Down
8 changes: 2 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG DISTRO=alpine
ARG DISTRO_VARIANT=3.18
ARG DISTRO_VARIANT=edge

FROM docker.io/tiredofit/nginx:${DISTRO}-${DISTRO_VARIANT}
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"

ARG PHP_BASE

ENV PHP_BASE=${PHP_BASE:-"8.2"} \
ENV PHP_BASE=${PHP_BASE:-"8.3"} \
PHP_ENABLE_APCU=TRUE \
PHP_ENABLE_BCMATH=TRUE \
PHP_ENABLE_BZ2=TRUE \
Expand Down Expand Up @@ -94,19 +94,15 @@ RUN case "${PHP_BASE}" in \
php83-pecl-ast \
php83-pecl-couchbase \
php83-pecl-igbinary \
php83-pecl-imagick \
php83-pecl-lzf \
php83-pecl-maxminddb \
php83-pecl-memcache \
php83-pecl-memcached \
php83-pecl-mongodb \
php83-pecl-msgpack \
php83-pecl-protobuf \
php83-pecl-psr \
php83-pecl-redis \
php83-pecl-swoole \
php83-pecl-uploadprogress \
php83-pecl-uuid \
php83-pecl-xdebug \
php83-pecl-xhprof \
php83-pecl-xhprof-assets \
Expand Down
1 change: 0 additions & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ RUN export PHP_7_3_RUN_DEPS=" \
php$PHP_BASE-grpc \
php$PHP_BASE-imagick \
php$PHP_BASE-inotify \
php-lua \
php$PHP_BASE-lz4 \
php$PHP_BASE-mailparse \
php$PHP_BASE-maxminddb \
Expand Down
4 changes: 3 additions & 1 deletion install/etc/cont-init.d/20-php-fpm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ case "${PHP_FPM_CONTAINER_MODE,,}" in
;;
"php-fpm")
print_warn "Setting Container to operate in PHP-FPM standalone mode - You will need a seperate container for Nginx or another webserver to serve content"
service_stop 10-nginx
set -x
mod_service_stop 10-nginx
set +x
print_notice "Setting PHP-FPM to serve from ${PHP_WEBROOT}"
sed -i "/[www]#/achdir = ${PHP_WEBROOT}" /assets/php-fpm/fpm/php-fpm.conf
rm -rf /etc/zabbix/zabbix_agent.conf.d/nginx.conf
Expand Down

0 comments on commit d3c0c49

Please sign in to comment.