Compare commits

...

1 Commits
master ... php8

Author SHA1 Message Date
TBK 0d196676a7
Switch to php8 2021-02-25 13:36:33 +01:00
2 changed files with 35 additions and 32 deletions

View File

@ -4,6 +4,7 @@ LABEL maintainer="JJTC <oci@jjtc.eu>"
ENV PPM_VERSION=2.2.1 \ ENV PPM_VERSION=2.2.1 \
PPM_HTTP_VERSION=2.0.6 \ PPM_HTTP_VERSION=2.0.6 \
COMPOSER_VERSION=2.0.11 \
BOOKSTACK=BookStack \ BOOKSTACK=BookStack \
BOOKSTACK_VERSION=0.31.6 \ BOOKSTACK_VERSION=0.31.6 \
BOOKSTACK_HOME="/app" BOOKSTACK_HOME="/app"
@ -25,37 +26,39 @@ RUN set -ex \
multirun \ multirun \
nginx \ nginx \
tar \ tar \
php7 \ php8 \
php7-cgi \ php8-cgi \
php7-ctype \ php8-ctype \
php7-curl \ php8-curl \
php7-dom \ php8-dom \
php7-exif \ php8-exif \
php7-fileinfo \ php8-fileinfo \
php7-gd \ php8-gd \
php7-iconv \ php8-iconv \
php7-intl \ php8-intl \
php7-json \ php8-json \
php7-ldap \ php8-ldap \
php7-mbstring \ php8-mbstring \
php7-mcrypt \ php8-opcache \
php7-opcache \ php8-openssl \
php7-openssl \ php8-pcntl \
php7-pcntl \ php8-pdo_mysql \
php7-pdo_mysql \ php8-pecl-imagick \
php7-pecl-imagick \ php8-phar \
php7-phar \ php8-posix \
php7-posix \ php8-redis \
php7-redis \ php8-session \
php7-session \ php8-simplexml \
php7-simplexml \ php8-sockets \
php7-sockets \ php8-tokenizer \
php7-tokenizer \ php8-xml \
php7-xml \ php8-xmlwriter \
php7-xmlwriter \ php8-zip \
php7-zip \ php8-zlib \
php7-zlib \ && echo "Setting up Composer" \
composer \ && ln -sf /usr/bin/php8 /usr/bin/php \
&& curl https://getcomposer.org/download/$COMPOSER_VERSION/composer.phar -o /usr/bin/composer \
&& chmod 0755 /usr/bin/composer \
&& echo "Setting up PPM:" \ && echo "Setting up PPM:" \
&& mkdir -p /ppm/run \ && mkdir -p /ppm/run \
&& cd /ppm \ && cd /ppm \

View File

@ -16,5 +16,5 @@
"socket-path": "\/ppm\/run\/", "socket-path": "\/ppm\/run\/",
"pidfile": "\/ppm\/ppm.pid", "pidfile": "\/ppm\/ppm.pid",
"reload-timeout": 30, "reload-timeout": 30,
"cgi-path": "\/usr\/bin\/php-cgi7" "cgi-path": "\/usr\/bin\/php-cgi8"
} }