Skip to content

Commit 0154367

Browse files
committed
update README for #842
1 parent 9acd434 commit 0154367

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,7 @@ I am testing mainly on Ubuntu and I have the following test setups:
13721372
- (Docker) Ubuntu 18.04 with PHP 7.2, MySQL 5.7, PostgreSQL 10.4 (PostGIS 2.4) and SQLite 3.22
13731373
- (Docker) Debian 10 with PHP 7.3, MariaDB 10.3, PostgreSQL 11.4 (PostGIS 2.5) and SQLite 3.27
13741374
- (Docker) Ubuntu 20.04 with PHP 7.4, MySQL 8.0, PostgreSQL 12.2 (PostGIS 3.0) and SQLite 3.31
1375-
- (Docker) CentOS 8 with PHP 8.0, MariaDB 10.6, PostgreSQL 12.8 (PostGIS 3.0) and SQLite 3.26
1375+
- (Docker) CentOS 8 with PHP 8.1, MariaDB 10.6, PostgreSQL 12.8 (PostGIS 3.0) and SQLite 3.26
13761376
- (Docker) Debian 11 with PHP 7.4, MariaDB 10.5, PostgreSQL 13.4 (PostGIS 3.1) and SQLite 3.34
13771377

13781378
This covers not all environments (yet), so please notify me of failing tests and report your environment.

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/centos8/Dockerfile

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.n
1818
# enable powertools repos
1919
RUN dnf -y install 'dnf-command(config-manager)' && dnf -y config-manager --set-enabled powertools
2020

21-
# set php to remi 8.0
22-
RUN dnf -y module reset php && dnf -y module enable php:remi-8.0
21+
# set php to remi 8.1
22+
RUN dnf -y module reset php && dnf -y module enable php:remi-8.1
2323
# disable mariadb and postgresql default (appstream) repo
2424
RUN dnf -y module disable mariadb
2525
RUN dnf -y module disable postgresql
2626

2727
RUN dnf -y install \
28-
php-cli php-xml php-json php-mbstring \
29-
MariaDB-server MariaDB-client php-mysqlnd \
30-
postgresql12 postgresql12-server php-pgsql postgis30_12 \
31-
sqlite php-sqlite3 \
32-
git wget
28+
php-cli php-xml php-json php-mbstring \
29+
MariaDB-server MariaDB-client php-mysqlnd \
30+
postgresql12 postgresql12-server php-pgsql postgis30_12 \
31+
sqlite php-sqlite3 \
32+
git wget
3333

3434
# install run script
3535
ADD run.sh /usr/sbin/docker-run

0 commit comments

Comments
 (0)