Browse Source

update tests

Maurits van der Schee 3 years ago
parent
commit
9548b023aa
3 changed files with 4 additions and 4 deletions
  1. 1
    1
      README.md
  2. 2
    2
      docker/centos8/Dockerfile
  3. 1
    1
      docker/centos8/run.sh

+ 1
- 1
README.md View File

@@ -1264,7 +1264,7 @@ Install docker using the following commands and then logout and login for the ch
1264 1264
 To run the docker tests run "build_all.sh" and "run_all.sh" from the docker directory. The output should be:
1265 1265
 
1266 1266
     ================================================
1267
-    CentOS 8 (PHP 7.4)
1267
+    CentOS 8 (PHP 8.0)
1268 1268
     ================================================
1269 1269
     [1/4] Starting MariaDB 10.5 ..... done
1270 1270
     [2/4] Starting PostgreSQL 12.5 .. done

+ 2
- 2
docker/centos8/Dockerfile View File

@@ -18,8 +18,8 @@ RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.n
18 18
 # enable powertools repos
19 19
 RUN dnf -y install 'dnf-command(config-manager)' && dnf -y config-manager --set-enabled powertools
20 20
 
21
-# set php to remi 7.4
22
-RUN dnf -y module reset php && dnf -y module enable php:remi-7.4
21
+# set php to remi 8.0
22
+RUN dnf -y module reset php && dnf -y module enable php:remi-8.0
23 23
 # disable mariadb and postgresql default (appstream) repo
24 24
 RUN dnf -y module disable mariadb
25 25
 RUN dnf -y module disable postgresql

+ 1
- 1
docker/centos8/run.sh View File

@@ -1,6 +1,6 @@
1 1
 #!/bin/bash
2 2
 echo "================================================"
3
-echo " CentOS 8 (PHP 7.4)"
3
+echo " CentOS 8 (PHP 8.0)"
4 4
 echo "================================================"
5 5
 echo -n "[1/4] Starting MariaDB 10.5 ..... "
6 6
 # initialize mysql

Loading…
Cancel
Save