-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: update php to version 8 as 2.8.6 produced problems on php 7
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
FROM php:7-fpm-alpine | ||
FROM php:8-fpm-alpine | ||
|
||
LABEL org.opencontainers.image.authors="Jan Giesenberg <[email protected]>" | ||
|
||
|
@@ -22,7 +22,7 @@ RUN apk add --no-cache rsync freetype-dev libpng-dev jpeg-dev unzip sudo bash ge | |
&& docker-php-ext-install -j$(nproc) gd opcache mysqli pdo pdo_mysql \ | ||
&& rm -rf /usr/src/php/ | ||
|
||
ARG MODX_VERSION 2.8.2 | ||
ARG MODX_VERSION 2.8.7 | ||
ENV MODX_VERSION ${MODX_VERSION} | ||
|
||
# upstream tarballs include ./modx-${MODX_VERSION}/ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# docker-modx-revolution An auto-updating dockerfile to run ModX Revolution CMS | ||
# Copyright (C) 2021 Jan Giesenberg <[email protected]> | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
services: | ||
modx_php: | ||
image: "" | ||
build: build/ |