Doli 21.0.2

This commit is contained in:
TuxGasy
2025-08-02 09:05:58 +02:00
parent ed0dbf3d62
commit c575596399
5 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -13,7 +13,7 @@ FROM ${ARCH}php:8.2-apache-bullseye
# 2025 Renato de Castro Ferreira
LABEL maintainer="The Dolibarr foundation <contact@dolibarr.org>"
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

View File

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