Skip to content

Commit 2671cbe

Browse files
authored
Merge pull request #162 from eftechcombr/11.0.8
chore: bump version from 11.0.7 to 11.0.8
2 parents c0451e8 + 750e5f5 commit 2671cbe

10 files changed

Lines changed: 30 additions & 30 deletions

File tree

AGENTS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ docker-compose -f docker-compose-build.yml build
2020

2121
# Build specific image
2222
docker build -t eftechcombr/glpi:base -f docker/php/Dockerfile.base docker/php/
23-
docker build -t eftechcombr/glpi:php-fpm-11.0.7 -f docker/php/Dockerfile docker/php/
24-
docker build -t eftechcombr/glpi:nginx-11.0.7 -f docker/nginx/Dockerfile docker/nginx/
23+
docker build -t eftechcombr/glpi:php-fpm-11.0.8 -f docker/php/Dockerfile docker/php/
24+
docker build -t eftechcombr/glpi:nginx-11.0.8 -f docker/nginx/Dockerfile docker/nginx/
2525
```
2626

2727
### Run Containers
@@ -95,7 +95,7 @@ docker-php-ext-enable redis
9595
### Docker Compose
9696

9797
#### Version Tagging
98-
- Always use explicit version tags (e.g., `11.0.7`, not `latest`)
98+
- Always use explicit version tags (e.g., `11.0.8`, not `latest`)
9999
- Keep all service image tags synchronized
100100
- Use semantic versioning
101101

@@ -165,7 +165,7 @@ trap 'echo "Error on line $LINENO"' ERR
165165
### Images
166166
- Lowercase: `eftechcombr/glpi`
167167
- Use kebab-case: `php-fpm`, `nginx`
168-
- Version format: `11.0.7`
168+
- Version format: `11.0.8`
169169

170170
### Services (docker-compose)
171171
- Lowercase with hyphens: `mariadb`, `glpi-db-install`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Manifest files for building and deploying **GLPI** using containers with Docker
99

1010
- [x] PHP-FPM: `php:8.4.19-fpm-alpine3.22`
1111
- [x] Nginx: `nginxinc/nginx-unprivileged:1.27.5-alpine3.21-slim`
12-
- [x] GLPI PHP: `eftechcombr/glpi:php-fpm-11.0.7`
13-
- [x] GLPI Nginx: `eftechcombr/glpi:nginx-11.0.7`
12+
- [x] GLPI PHP: `eftechcombr/glpi:php-fpm-11.0.8`
1413

14+
- [x] GLPI Nginx: `eftechcombr/glpi:nginx-11.0.8`
1515
## Quick Start
1616

1717
### Using Helm (Kubernetes)

docker/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GLPI_LANG="en_US"
2-
VERSION="11.0.7"
2+
VERSION="11.0.8"
33
GLPI_MARKETPLACE_DIR=/var/www/html/marketplace
44
GLPI_VAR_DIR=/var/lib/glpi
55
GLPI_DOC_DIR=/var/lib/glpi

docker/docker-compose-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323

2424

2525
glpi-db-upgrade:
26-
image: eftechcombr/glpi:php-fpm-11.0.7
26+
image: eftechcombr/glpi:php-fpm-11.0.8
2727
restart: on-failure
2828
env_file: ./.env
2929
volumes:
@@ -37,7 +37,7 @@ services:
3737

3838

3939
glpi-db-install:
40-
image: eftechcombr/glpi:php-fpm-11.0.7
40+
image: eftechcombr/glpi:php-fpm-11.0.8
4141
restart: on-failure
4242
env_file: ./.env
4343
volumes:
@@ -50,7 +50,7 @@ services:
5050
- /usr/local/bin/glpi-db-install.sh
5151

5252
glpi-verify-dir:
53-
image: eftechcombr/glpi:php-fpm-11.0.7
53+
image: eftechcombr/glpi:php-fpm-11.0.8
5454
restart: on-failure
5555
volumes:
5656
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -63,7 +63,7 @@ services:
6363
- /usr/local/bin/glpi-verify-dir.sh
6464

6565
glpi-db-configure:
66-
image: eftechcombr/glpi:php-fpm-11.0.7
66+
image: eftechcombr/glpi:php-fpm-11.0.8
6767
restart: on-failure
6868
volumes:
6969
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -76,7 +76,7 @@ services:
7676
- /usr/local/bin/glpi-db-configure.sh
7777

7878
glpi-cache-configure:
79-
image: eftechcombr/glpi:php-fpm-11.0.7
79+
image: eftechcombr/glpi:php-fpm-11.0.8
8080
restart: on-failure
8181
volumes:
8282
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -99,7 +99,7 @@ services:
9999

100100
php:
101101
build: php/
102-
image: eftechcombr/glpi:php-fpm-11.0.7
102+
image: eftechcombr/glpi:php-fpm-11.0.8
103103
restart: unless-stopped
104104
volumes:
105105
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -116,7 +116,7 @@ services:
116116

117117
nginx:
118118
build: nginx/
119-
image: eftechcombr/glpi:nginx-11.0.7
119+
image: eftechcombr/glpi:nginx-11.0.8
120120
restart: unless-stopped
121121
ports:
122122
- "8080:8080"

docker/docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
command: mariadb -h $MARIADB_HOST -u root -p$MARIADB_ROOT_PASSWORD -e "GRANT SELECT ON \`mysql\`.\`time_zone_name\` TO 'glpi'@'%'; FLUSH PRIVILEGES;"
2323

2424
glpi-db-install:
25-
image: eftechcombr/glpi:php-fpm-11.0.7
25+
image: eftechcombr/glpi:php-fpm-11.0.8
2626
restart: on-failure
2727
env_file: ./.env
2828
volumes:
@@ -35,7 +35,7 @@ services:
3535
- /usr/local/bin/glpi-db-install.sh
3636

3737
glpi-verify-dir:
38-
image: eftechcombr/glpi:php-fpm-11.0.7
38+
image: eftechcombr/glpi:php-fpm-11.0.8
3939
restart: on-failure
4040
volumes:
4141
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -48,7 +48,7 @@ services:
4848
- /usr/local/bin/glpi-verify-dir.sh
4949

5050
glpi-db-configure:
51-
image: eftechcombr/glpi:php-fpm-11.0.7
51+
image: eftechcombr/glpi:php-fpm-11.0.8
5252
restart: on-failure
5353
volumes:
5454
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -60,7 +60,7 @@ services:
6060
command:
6161
- /usr/local/bin/glpi-db-configure.sh
6262
glpi-cache-configure:
63-
image: eftechcombr/glpi:php-fpm-11.0.7
63+
image: eftechcombr/glpi:php-fpm-11.0.8
6464
restart: on-failure
6565
volumes:
6666
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -73,7 +73,7 @@ services:
7373
- /usr/local/bin/glpi-cache-configure.sh
7474

7575
php:
76-
image: eftechcombr/glpi:php-fpm-11.0.7
76+
image: eftechcombr/glpi:php-fpm-11.0.8
7777
restart: unless-stopped
7878
volumes:
7979
- glpi-marketplace:/var/www/html/marketplace:rw
@@ -89,7 +89,7 @@ services:
8989
- "9000:9000"
9090

9191
nginx:
92-
image: eftechcombr/glpi:nginx-11.0.7
92+
image: eftechcombr/glpi:nginx-11.0.8
9393
restart: unless-stopped
9494
ports:
9595
- "8080:8080"

docker/nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eftechcombr/glpi:php-fpm-11.0.7 as BUILD
1+
FROM eftechcombr/glpi:php-fpm-11.0.8 as BUILD
22
#
33

44
FROM nginxinc/nginx-unprivileged:1.27.5-alpine3.21-slim

docker/php/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eftechcombr/glpi:base
22

3-
ENV VERSION=11.0.7
3+
ENV VERSION=11.0.8
44
ENV GLPI_LANG=en_US
55
ENV CACHE_DSN=redis://redis:6379/
66
ENV MARIADB_HOST=mariadb-glpi

kubernetes/glpi/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: glpi
33
description: GLPI Helm Chart - IT Asset Management and Service Desk
44
type: application
5-
version: 11.0.7
6-
appVersion: "11.0.7"
5+
version: 11.0.8
6+
appVersion: "11.0.8"
77

88
# Artifact Hub Metadata
99
home: https://github.com/eftechcombr/glpi

kubernetes/glpi/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ The following table lists the configurable parameters of the GLPI chart and thei
3131

3232
| Parameter | Description | Default |
3333
|-----------|-------------|---------|
34-
| `glpi.version` | GLPI version to deploy | `"11.0.7"` |
34+
| `glpi.version` | GLPI version to deploy | `"11.0.8"` |
3535
| `glpi.language` | Default language for GLPI | `en_US` |
3636

3737
### PHP-FPM Configuration
3838

3939
| Parameter | Description | Default |
4040
|-----------|-------------|---------|
4141
| `glpi.phpfpm.image.repository` | PHP-FPM image repository | `eftechcombr/glpi` |
42-
| `glpi.phpfpm.image.tag` | PHP-FPM image tag | `php-fpm-11.0.7` |
42+
| `glpi.phpfpm.image.tag` | PHP-FPM image tag | `php-fpm-11.0.8` |
4343
| `glpi.phpfpm.image.pullPolicy` | PHP-FPM image pull policy | `IfNotPresent` |
4444
| `glpi.phpfpm.replicaCount` | Number of PHP-FPM pods | `1` |
4545
| `glpi.phpfpm.resources.limits.cpu` | PHP-FPM container CPU limit | `1000m` |
@@ -54,7 +54,7 @@ The following table lists the configurable parameters of the GLPI chart and thei
5454
| Parameter | Description | Default |
5555
|-----------|-------------|---------|
5656
| `glpi.nginx.image.repository` | Nginx image repository | `eftechcombr/glpi` |
57-
| `glpi.nginx.image.tag` | Nginx image tag | `nginx-11.0.7` |
57+
| `glpi.nginx.image.tag` | Nginx image tag | `nginx-11.0.8` |
5858
| `glpi.nginx.image.pullPolicy` | Nginx image pull policy | `IfNotPresent` |
5959
| `glpi.nginx.replicaCount` | Number of Nginx pods | `1` |
6060
| `glpi.nginx.resources.limits.cpu` | Nginx container CPU limit | `500m` |

kubernetes/glpi/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ global:
1616
# -- GLPI Application Configuration
1717
glpi:
1818
# GLPI version to deploy
19-
version: "11.0.7"
19+
version: "11.0.8"
2020

2121
# GLPI default language (e.g., en_US, fr_FR, pt_BR)
2222
language: "en_US"
@@ -28,7 +28,7 @@ glpi:
2828
# Image repository for PHP-FPM
2929
repository: eftechcombr/glpi
3030
# Image tag for PHP-FPM
31-
tag: php-fpm-11.0.7
31+
tag: php-fpm-11.0.8
3232
# Image pull policy
3333
pullPolicy: IfNotPresent
3434

@@ -75,7 +75,7 @@ glpi:
7575
# Image repository for Nginx
7676
repository: eftechcombr/glpi
7777
# Image tag for Nginx
78-
tag: nginx-11.0.7
78+
tag: nginx-11.0.8
7979
# Image pull policy
8080
pullPolicy: IfNotPresent
8181

0 commit comments

Comments
 (0)