Skip to content

Commit 5352f87

Browse files
Bump GLPI to 11.0.6 (Automated)
1 parent d647f48 commit 5352f87

5 files changed

Lines changed: 28 additions & 28 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors="github@diouxx.be"
88
ENV DEBIAN_FRONTEND=noninteractive
99

1010
#GLPI Verison
11-
ENV VERSION_GLPI="11.0.5"
11+
ENV VERSION_GLPI="11.0.6"
1212

1313
#Installation d'apache et de php8.3 avec extension
1414
RUN apt update \

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ docker run --name mariadb \
7979
docker run --name glpi \
8080
--link mariadb:mariadb \
8181
-p 8080:80 \
82-
-d triatk/glpi-standalone:11.0.5
82+
-d triatk/glpi-standalone:11.0.6
8383
```
8484

8585
Access GLPI at `http://localhost:8080`.
@@ -93,7 +93,7 @@ If you have an existing MariaDB/MySQL database:
9393
docker run --name glpi \
9494
--link your_existing_database_container_name:mariadb \
9595
-p 8080:80 \
96-
-d triatk/glpi-standalone:11.0.5
96+
-d triatk/glpi-standalone:11.0.6
9797
```
9898

9999
Ensure your GLPI container can connect to `your_existing_database_container_name` on port 3306 and has the necessary credentials.
@@ -129,12 +129,12 @@ docker run --name glpi \
129129
--volume glpi_config:/var/www/html/glpi/config \
130130
--volume glpi_logs:/var/www/html/glpi/files/_log \
131131
-p 8080:80 \
132-
-d triatk/glpi-standalone:11.0.5
132+
-d triatk/glpi-standalone:11.0.6
133133
```
134134

135135
## Deploy a Specific Release of GLPI
136136

137-
The Docker image tag often corresponds to a GLPI version (e.g., `triatk/glpi-standalone:11.0.5`).
137+
The Docker image tag often corresponds to a GLPI version (e.g., `triatk/glpi-standalone:11.0.6`).
138138
You can also use the `VERSION_GLPI` environment variable if the image tag is more generic (like `latest`), though using specific image tags is recommended for production.
139139

140140
```shell
@@ -174,7 +174,7 @@ services:
174174

175175
glpi:
176176
# Check Docker Hub for the latest stable tag: https://hub.docker.com/r/triatk/glpi-standalone/tags
177-
image: triatk/glpi-standalone:11.0.5 # Use a specific version tag
177+
image: triatk/glpi-standalone:11.0.6 # Use a specific version tag
178178
container_name: glpi-app
179179
hostname: glpi
180180
depends_on:
@@ -183,7 +183,7 @@ services:
183183
- "8080:80" # Host port 8080 maps to container port 80
184184
environment:
185185
- TIMEZONE=Europe/Paris
186-
# - VERSION_GLPI=11.0.5 # Often determined by the image tag, but can be set
186+
# - VERSION_GLPI=11.0.6 # Often determined by the image tag, but can be set
187187
restart: unless-stopped
188188
```
189189
@@ -220,7 +220,7 @@ services:
220220
221221
glpi:
222222
# Check Docker Hub for the latest stable tag: https://hub.docker.com/r/triatk/glpi-standalone/tags
223-
image: triatk/glpi-standalone:11.0.5 # Use a specific version tag
223+
image: triatk/glpi-standalone:11.0.6 # Use a specific version tag
224224
container_name: glpi-app-prod
225225
hostname: glpi
226226
depends_on:
@@ -237,7 +237,7 @@ services:
237237
environment:
238238
- TIMEZONE=Europe/Brussels # e.g., Europe/Paris, America/New_York
239239
# - GLPI_ALIAS=glpi # Uncomment to deploy GLPI in a subfolder (e.g., /glpi)
240-
# - VERSION_GLPI=11.0.5 # Usually set by the image tag, confirm if needed
240+
# - VERSION_GLPI=11.0.6 # Usually set by the image tag, confirm if needed
241241
# - VERSION_PHP=8.3 # If the image supports multiple PHP versions via env var
242242
- INSTALL_PLUGINS=false # Set to true if you mount a plugins folder and want them installed
243243
- OPCACHE_SIZE=128
@@ -289,7 +289,7 @@ If set to `true`, the container will attempt to install/enable plugins found in
289289
Specifies the GLPI version to install/ensure, if the image supports dynamic version fetching (less common with pre-built standalone images). It's often tied to the image tag.
290290

291291
- Example: `VERSION_GLPI=10.0.18`
292-
- **Note:** Prefer using a specific image tag like `triatk/glpi-standalone:11.0.5`.
292+
- **Note:** Prefer using a specific image tag like `triatk/glpi-standalone:11.0.6`.
293293

294294
## VERSION_PHP
295295

README_FR.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ docker run --name mariadb \
7979
docker run --name glpi \
8080
--link mariadb:mariadb \
8181
-p 8080:80 \
82-
-d triatk/glpi-standalone:11.0.5
82+
-d triatk/glpi-standalone:11.0.6
8383
```
8484

8585
Accédez à GLPI sur `http://localhost:8080`.
@@ -93,7 +93,7 @@ Si vous avez une base de données MariaDB/MySQL existante :
9393
docker run --name glpi \
9494
--link nom_conteneur_bdd_existant:mariadb \
9595
-p 8080:80 \
96-
-d triatk/glpi-standalone:11.0.5
96+
-d triatk/glpi-standalone:11.0.6
9797
```
9898

9999
Assurez-vous que votre conteneur GLPI peut se connecter à `nom_conteneur_bdd_existant` sur le port 3306 et dispose des informations d'identification nécessaires.
@@ -130,12 +130,12 @@ docker run --name glpi \
130130
--volume glpi_config:/var/www/html/glpi/config \
131131
--volume glpi_logs:/var/www/html/glpi/files/_log \
132132
-p 8080:80 \
133-
-d triatk/glpi-standalone:11.0.5
133+
-d triatk/glpi-standalone:11.0.6
134134
```
135135

136136
## Déployer une Version Spécifique de GLPI
137137

138-
Le tag de l'image Docker correspond souvent à une version de GLPI (ex: `triatk/glpi-standalone:11.0.5`).
138+
Le tag de l'image Docker correspond souvent à une version de GLPI (ex: `triatk/glpi-standalone:11.0.6`).
139139
Vous pouvez également utiliser la variable d'environnement `VERSION_GLPI` si le tag de l'image est plus générique (comme `latest`), bien que l'utilisation de tags d'image spécifiques soit recommandée en production.
140140

141141
```shell
@@ -175,7 +175,7 @@ services:
175175

176176
glpi:
177177
# Vérifiez Docker Hub pour le dernier tag stable : https://hub.docker.com/r/triatk/glpi-standalone/tags
178-
image: triatk/glpi-standalone:11.0.5 # Utilisez un tag de version spécifique
178+
image: triatk/glpi-standalone:11.0.6 # Utilisez un tag de version spécifique
179179
container_name: glpi-app
180180
hostname: glpi
181181
depends_on:
@@ -184,7 +184,7 @@ services:
184184
- "8080:80" # Le port hôte 8080 est mappé au port conteneur 80
185185
environment:
186186
- TIMEZONE=Europe/Paris
187-
# - VERSION_GLPI=11.0.5 # Souvent déterminé par le tag de l'image, mais peut être défini
187+
# - VERSION_GLPI=11.0.6 # Souvent déterminé par le tag de l'image, mais peut être défini
188188
restart: unless-stopped
189189
```
190190
@@ -221,7 +221,7 @@ services:
221221
222222
glpi:
223223
# Vérifiez Docker Hub pour le dernier tag stable : https://hub.docker.com/r/triatk/glpi-standalone/tags
224-
image: triatk/glpi-standalone:11.0.5 # Utilisez un tag de version spécifique
224+
image: triatk/glpi-standalone:11.0.6 # Utilisez un tag de version spécifique
225225
container_name: glpi-app-prod
226226
hostname: glpi
227227
depends_on:
@@ -238,7 +238,7 @@ services:
238238
environment:
239239
- TIMEZONE=Europe/Brussels # ex: Europe/Paris, America/New_York
240240
# - GLPI_ALIAS=glpi # Décommentez pour déployer GLPI dans un sous-dossier (ex: /glpi)
241-
# - VERSION_GLPI=11.0.5 # Généralement défini par le tag de l'image, confirmez si besoin
241+
# - VERSION_GLPI=11.0.6 # Généralement défini par le tag de l'image, confirmez si besoin
242242
# - VERSION_PHP=8.3 # Si l'image supporte plusieurs versions PHP via var d'env
243243
- INSTALL_PLUGINS=false # Mettre à true si vous montez un dossier de plugins et voulez les installer
244244
- OPCACHE_SIZE=128
@@ -290,7 +290,7 @@ Si défini à `true`, le conteneur tentera d'installer/activer les plugins trouv
290290
Spécifie la version de GLPI à installer/assurer, si l'image prend en charge la récupération dynamique de version (moins courant avec les images autonomes pré-construites). C'est souvent lié au tag de l'image.
291291

292292
- Exemple : `VERSION_GLPI=10.0.18`
293-
- **Note :** Préférez utiliser un tag d'image spécifique comme `triatk/glpi-standalone:11.0.5`.
293+
- **Note :** Préférez utiliser un tag d'image spécifique comme `triatk/glpi-standalone:11.0.6`.
294294

295295
## VERSION_PHP
296296

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414

1515
#GLPI Container
1616
glpi:
17-
image: triatk/glpi-standalone:11.0.5
17+
image: triatk/glpi-standalone:11.0.6
1818
container_name: glpi
1919
hostname: glpi
2020
ports:
@@ -26,7 +26,7 @@ services:
2626
environment:
2727
- TIMEZONE=Europe/Brussels
2828
#- GLPI_ALIAS=glpi # Optional, uncomment to deploy GLPI in a subfolder, default subdir is /glpi
29-
- VERSION_GLPI=11.0.5
29+
- VERSION_GLPI=11.0.6
3030
- VERSION_PHP=8.3 # Optional, default to 8.3
3131
- INSTALL_PLUGINS=false # Optional, default to false
3232
- OPCACHE_SIZE=128 # Optional, default to 128

glpi-start.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
#!/bin/bash
22

33
#Controle du choix de version ou prise de la latest
4-
VERSION_GLPI="${VERSION_GLPI:=11.0.5}"
4+
VERSION_GLPI="${VERSION_GLPI:=11.0.6}"
55

66
#Version of PHP
7-
VERSION_PHP="${VERSION_PHP:=11.0.5}"
7+
VERSION_PHP="${VERSION_PHP:=11.0.6}"
88

99
#Install plugins
10-
INSTALL_PLUGINS="${INSTALL_PLUGINS:=11.0.5}"
10+
INSTALL_PLUGINS="${INSTALL_PLUGINS:=11.0.6}"
1111

1212
#Zend OPcache settings
13-
OPCACHE_SIZE="${OPCACHE_SIZE:=11.0.5}"
14-
OPCACHE_BUFFER="${OPCACHE_BUFFER:=11.0.5}"
15-
OPCACHE_WASTED_PERCENTAGE="${OPCACHE_WASTED_PERCENTAGE:=11.0.5}"
13+
OPCACHE_SIZE="${OPCACHE_SIZE:=11.0.6}"
14+
OPCACHE_BUFFER="${OPCACHE_BUFFER:=11.0.6}"
15+
OPCACHE_WASTED_PERCENTAGE="${OPCACHE_WASTED_PERCENTAGE:=11.0.6}"
1616

1717
#GLPI upgrade migration
18-
GLPI_UPGRADE_MIGRATION="${GLPI_UPGRADE_MIGRATION:=11.0.5}"
18+
GLPI_UPGRADE_MIGRATION="${GLPI_UPGRADE_MIGRATION:=11.0.6}"
1919

2020
if [[ -z "${TIMEZONE}" ]]; then echo "TIMEZONE is unset";
2121
else

0 commit comments

Comments
 (0)