From 910c036c25f75728dce3b3822b00176a689a47d3 Mon Sep 17 00:00:00 2001 From: Romain Date: Thu, 29 Jan 2026 07:44:58 +0100 Subject: [PATCH] Update 20260129-0744 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Passage à PHP 8.3.30 Modification Entrypoint, installation initiale de GLPI 11.0.5 --- docker-entrypoint.sh | 2 +- dockerfile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index a1f4d32..8bd74d2 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -45,7 +45,7 @@ fi echo "✅ Variables obligatoire OK" GITHUB_API="https://api.github.com/repos/glpi-project/glpi/releases/latest" # URI API GITHUB POUR RECUPERER LA DERNIERE VERSION DE GLPI DISPINIBLE -URI_FALLBACK="${URI_FALLBACK:-https://github.com/glpi-project/glpi/releases/download/11.0.3/glpi-11.0.3.tgz}" +URI_FALLBACK="${URI_FALLBACK:-https://github.com/glpi-project/glpi/releases/download/11.0.5/glpi-11.0.5.tgz}" APACHE_CONF="/etc/apache2/sites-available/glpi.conf" PHP_CONF_FILE="/etc/php/8.3/fpm/conf.d/90-glpi.ini" diff --git a/dockerfile b/dockerfile index 73e4acd..060aae6 100644 --- a/dockerfile +++ b/dockerfile @@ -3,7 +3,8 @@ FROM ubuntu:24.04 LABEL org.opencontainers.image.authors="Romain" \ com.rdritcom.ubuntu_version="24.04" \ com.rdritcom.apache2_version="2.4.65" \ - com.rdritcom.php_version="8.3.28" + com.rdritcom.php_version="8.3.30" \ + com.rdritcom.glpi_version="11.0.5" RUN apt-get update \ && apt-get install software-properties-common -yqq \ -- GitLab