From 7e6666f7e097f81430a9e0f01ef15414f9c6046d Mon Sep 17 00:00:00 2001 From: TuxGasy Date: Sat, 12 Oct 2024 12:37:40 +0200 Subject: [PATCH] Update version 20.0.1 --- README.md | 2 +- images/{20.0.0-php8.2 => 20.0.1-php8.2}/Dockerfile | 2 +- images/{20.0.0-php8.2 => 20.0.1-php8.2}/docker-init.php | 0 images/{20.0.0-php8.2 => 20.0.1-php8.2}/docker-run.sh | 0 versions.sh | 5 ++--- 5 files changed, 4 insertions(+), 5 deletions(-) rename images/{20.0.0-php8.2 => 20.0.1-php8.2}/Dockerfile (99%) rename images/{20.0.0-php8.2 => 20.0.1-php8.2}/docker-init.php (100%) rename images/{20.0.0-php8.2 => 20.0.1-php8.2}/docker-run.sh (100%) diff --git a/README.md b/README.md index 507c3d9..a9106e1 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Dolibarr is a modern software package to manage your organization's activity (co * 17.0.4-php8.1 17.0.4 17 * 18.0.5-php8.1 18.0.5 18 * 19.0.3-php8.2 19.0.3 19 -* 20.0.0-php8.2 20.0.0 20 latest +* 20.0.1-php8.2 20.0.1 20 latest * develop *Dolibarr versions 14 and lower are no more updated on docker hub. You can get them as standard zip package from Dolibarr official web site* diff --git a/images/20.0.0-php8.2/Dockerfile b/images/20.0.1-php8.2/Dockerfile similarity index 99% rename from images/20.0.0-php8.2/Dockerfile rename to images/20.0.1-php8.2/Dockerfile index f1d099b..51a5336 100644 --- a/images/20.0.0-php8.2/Dockerfile +++ b/images/20.0.1-php8.2/Dockerfile @@ -9,7 +9,7 @@ FROM ${ARCH}php:8.2-apache-buster # 2024 Laurent Destailleur LABEL maintainer="The Dolibarr foundation " -ENV DOLI_VERSION 20.0.0 +ENV DOLI_VERSION 20.0.1 ENV DOLI_VERSION_FOR_INIT_DEMO 20.0 ENV DOLI_INSTALL_AUTO 1 ENV DOLI_PROD 1 diff --git a/images/20.0.0-php8.2/docker-init.php b/images/20.0.1-php8.2/docker-init.php similarity index 100% rename from images/20.0.0-php8.2/docker-init.php rename to images/20.0.1-php8.2/docker-init.php diff --git a/images/20.0.0-php8.2/docker-run.sh b/images/20.0.1-php8.2/docker-run.sh similarity index 100% rename from images/20.0.0-php8.2/docker-run.sh rename to images/20.0.1-php8.2/docker-run.sh diff --git a/versions.sh b/versions.sh index ad70211..0785034 100644 --- a/versions.sh +++ b/versions.sh @@ -3,11 +3,10 @@ set -e # The list of version to build docker packages for -DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.5" "19.0.3" "20.0.0" "develop") +DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.5" "19.0.3" "20.0.1" "develop") # The version to use when installing dolibarr/dolibarr:latest -DOLIBARR_LATEST_TAG="20.0.0" +DOLIBARR_LATEST_TAG="20.0.1" # The version to use to find the dump file for the init of demo with branch "develop" DOLIBARR_VERSION_FOR_INIT_DEMO="20.0" -