From 3f983e7b3962acdfef165066b41bd2f1a8c1913b Mon Sep 17 00:00:00 2001 From: Mathieu POTIER Date: Thu, 4 Nov 2021 22:11:01 +0100 Subject: [PATCH] Upgrade version to 14.0.3 --- CONTRIBUTING.md | 8 ++++---- README.md | 2 +- images/{14.0.2-php7.4 => 14.0.3-php7.4}/Dockerfile | 2 +- images/{14.0.2-php7.4 => 14.0.3-php7.4}/docker-run.sh | 0 versions.sh | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) rename images/{14.0.2-php7.4 => 14.0.3-php7.4}/Dockerfile (98%) rename images/{14.0.2-php7.4 => 14.0.3-php7.4}/docker-run.sh (100%) mode change 100755 => 100644 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7ec328c..90dbb64 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -27,13 +27,13 @@ $> ./test.sh * DOLIBARR_VERSION : (Mandatory) the version you want to build and run. * PHP_VERSION : (Optional) the Dolibarr version with this PHP version you want to run specifically, if omitted it will use the most up to date PHP version. -If you want to run Dolibarr 12.0.1 with PHP 7.4 +If you want to run Dolibarr 14.0.3 with PHP 7.4 ```bash -$> ./test.sh 12.0.1 7.4 +$> ./test.sh 14.0.3 7.4 ``` -If you want to run Dolibarr 12.0.1 with most up-to-date PHP version +If you want to run Dolibarr 14.0.3 with most up-to-date PHP version ```bash -$> ./test.sh 12.0.1 +$> ./test.sh 14.0.3 ``` Here are links for running containers : diff --git a/README.md b/README.md index 15615d1..27057a1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Docker image for Dolibarr with auto installer on first boot. * 11.0.5-php7.4 11.0.5 11 * 12.0.5-php7.4 12.0.5 12 * 13.0.4-php7.4 13.0.4 13 -* 14.0.2-php7.4 14.0.2 14 latest +* 14.0.3-php7.4 14.0.3 14 latest * develop **End of support for PHP < 7.3** diff --git a/images/14.0.2-php7.4/Dockerfile b/images/14.0.3-php7.4/Dockerfile similarity index 98% rename from images/14.0.2-php7.4/Dockerfile rename to images/14.0.3-php7.4/Dockerfile index 27d638f..62cc0b7 100644 --- a/images/14.0.2-php7.4/Dockerfile +++ b/images/14.0.3-php7.4/Dockerfile @@ -50,7 +50,7 @@ RUN apt-get update -y \ && docker-php-ext-install imap \ && mv ${PHP_INI_DIR}/php.ini-production ${PHP_INI_DIR}/php.ini -ENV DOLI_VERSION 14.0.2 +ENV DOLI_VERSION 14.0.3 # Get Dolibarr RUN curl -fLSs https://github.com/Dolibarr/dolibarr/archive/${DOLI_VERSION}.tar.gz |\ diff --git a/images/14.0.2-php7.4/docker-run.sh b/images/14.0.3-php7.4/docker-run.sh old mode 100755 new mode 100644 similarity index 100% rename from images/14.0.2-php7.4/docker-run.sh rename to images/14.0.3-php7.4/docker-run.sh diff --git a/versions.sh b/versions.sh index 46bc7a3..de04c75 100644 --- a/versions.sh +++ b/versions.sh @@ -2,5 +2,5 @@ set -e -DOLIBARR_VERSIONS=( "9.0.4" "10.0.7" "11.0.5" "12.0.5" "13.0.4" "14.0.2" "develop" ) -DOLIBARR_LATEST_TAG="14.0.2" +DOLIBARR_VERSIONS=( "9.0.4" "10.0.7" "11.0.5" "12.0.5" "13.0.4" "14.0.3" "develop" ) +DOLIBARR_LATEST_TAG="14.0.3"