Upgrade version to 14.0.3

This commit is contained in:
Mathieu POTIER
2021-11-04 22:11:01 +01:00
parent a0ee5975c2
commit 3f983e7b39
5 changed files with 8 additions and 8 deletions

View File

@@ -27,13 +27,13 @@ $> ./test.sh <DOLIBARR_VERSION> <PHP_VERSION>
* 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 :

View File

@@ -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**

View File

@@ -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 |\

View File

@@ -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"