From c575596399df7f8b8bce2f41e782927fae35d1c4 Mon Sep 17 00:00:00 2001 From: TuxGasy Date: Sat, 2 Aug 2025 09:05:58 +0200 Subject: [PATCH] Doli 21.0.2 --- .github/workflows/build.yml | 2 +- images/{21.0.1-php8.2 => 21.0.2-php8.2}/Dockerfile | 2 +- images/{21.0.1-php8.2 => 21.0.2-php8.2}/docker-init.php | 0 images/{21.0.1-php8.2 => 21.0.2-php8.2}/docker-run.sh | 0 versions.sh | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename images/{21.0.1-php8.2 => 21.0.2-php8.2}/Dockerfile (99%) rename images/{21.0.1-php8.2 => 21.0.2-php8.2}/docker-init.php (100%) rename images/{21.0.1-php8.2 => 21.0.2-php8.2}/docker-run.sh (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12b280f..f541840 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: build-docker-images: strategy: matrix: - dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.6, 19.0.4, 20.0.4, 21.0.1, develop ] + dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.6, 19.0.4, 20.0.4, 21.0.2, develop ] runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 diff --git a/images/21.0.1-php8.2/Dockerfile b/images/21.0.2-php8.2/Dockerfile similarity index 99% rename from images/21.0.1-php8.2/Dockerfile rename to images/21.0.2-php8.2/Dockerfile index 13ef290..2aab326 100644 --- a/images/21.0.1-php8.2/Dockerfile +++ b/images/21.0.2-php8.2/Dockerfile @@ -13,7 +13,7 @@ FROM ${ARCH}php:8.2-apache-bullseye # 2025 Renato de Castro Ferreira LABEL maintainer="The Dolibarr foundation " -ENV DOLI_VERSION=21.0.1 +ENV DOLI_VERSION=21.0.2 ENV DOLI_VERSION_FOR_INIT_DEMO=21.0 ENV DOLI_INSTALL_AUTO=1 ENV DOLI_PROD=1 diff --git a/images/21.0.1-php8.2/docker-init.php b/images/21.0.2-php8.2/docker-init.php similarity index 100% rename from images/21.0.1-php8.2/docker-init.php rename to images/21.0.2-php8.2/docker-init.php diff --git a/images/21.0.1-php8.2/docker-run.sh b/images/21.0.2-php8.2/docker-run.sh similarity index 100% rename from images/21.0.1-php8.2/docker-run.sh rename to images/21.0.2-php8.2/docker-run.sh diff --git a/versions.sh b/versions.sh index 34eea25..e869162 100644 --- a/versions.sh +++ b/versions.sh @@ -3,10 +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.6" "19.0.4" "20.0.4" "21.0.1" "develop") +DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.6" "19.0.4" "20.0.4" "21.0.2" "develop") # The version to use when installing dolibarr/dolibarr:latest -DOLIBARR_LATEST_TAG="21.0.1" +DOLIBARR_LATEST_TAG="21.0.2" # The version to use to find the dump file for the init of demo with branch "develop" DOLIBARR_VERSION_FOR_INIT_DEMO="21.0"