Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Manifest files for building and deploying **GLPI** using containers with Docker

- [x] PHP-FPM: `php:8.4.13-fpm-alpine3.22`
- [x] Nginx: `nginxinc/nginx-unprivileged:1.29.1-alpine3.22-slim`
- [x] GLPI PHP: `eftechcombr/glpi:php-fpm-11.0.2`
- [x] GLPI Nginx: `eftechcombr/glpi:nginx-11.0.2`
- [x] GLPI PHP: `eftechcombr/glpi:php-fpm-11.0.3`
- [x] GLPI Nginx: `eftechcombr/glpi:nginx-11.0.3`

## Quick Start

Expand Down
2 changes: 1 addition & 1 deletion docker/.env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GLPI_LANG="en_US"
VERSION="11.0.2"
VERSION="11.0.3"
GLPI_MARKETPLACE_DIR=/var/www/html/marketplace
GLPI_VAR_DIR=/var/lib/glpi
GLPI_DOC_DIR=/var/lib/glpi
Expand Down
12 changes: 6 additions & 6 deletions docker/docker-compose-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
command: mariadb -h $MARIADB_HOST -u root -p$MARIADB_ROOT_PASSWORD -e "GRANT SELECT ON \`mysql\`.\`time_zone_name\` TO 'glpi'@'%'; FLUSH PRIVILEGES;"

glpi-db-install:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
env_file: ./.env
volumes:
Expand All @@ -35,7 +35,7 @@ services:
- /usr/local/bin/glpi-db-install.sh

glpi-verify-dir:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -48,7 +48,7 @@ services:
- /usr/local/bin/glpi-verify-dir.sh

glpi-db-configure:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -61,7 +61,7 @@ services:
- /usr/local/bin/glpi-db-configure.sh

glpi-cache-configure:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -84,7 +84,7 @@ services:

php:
build: php/
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: unless-stopped
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -101,7 +101,7 @@ services:

nginx:
build: nginx/
image: eftechcombr/glpi:nginx-11.0.2
image: eftechcombr/glpi:nginx-11.0.3
restart: unless-stopped
ports:
- "8080:8080"
Expand Down
12 changes: 6 additions & 6 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
command: mariadb -h $MARIADB_HOST -u root -p$MARIADB_ROOT_PASSWORD -e "GRANT SELECT ON \`mysql\`.\`time_zone_name\` TO 'glpi'@'%'; FLUSH PRIVILEGES;"

glpi-db-install:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
env_file: ./.env
volumes:
Expand All @@ -35,7 +35,7 @@ services:
- /usr/local/bin/glpi-db-install.sh

glpi-verify-dir:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -48,7 +48,7 @@ services:
- /usr/local/bin/glpi-verify-dir.sh

glpi-db-configure:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -60,7 +60,7 @@ services:
command:
- /usr/local/bin/glpi-db-configure.sh
glpi-cache-configure:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: on-failure
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -73,7 +73,7 @@ services:
- /usr/local/bin/glpi-cache-configure.sh

php:
image: eftechcombr/glpi:php-fpm-11.0.2
image: eftechcombr/glpi:php-fpm-11.0.3
restart: unless-stopped
volumes:
- glpi-marketplace:/var/www/html/marketplace:rw
Expand All @@ -89,7 +89,7 @@ services:
- "9000:9000"

nginx:
image: eftechcombr/glpi:nginx-11.0.2
image: eftechcombr/glpi:nginx-11.0.3
restart: unless-stopped
ports:
- "8080:8080"
Expand Down
2 changes: 1 addition & 1 deletion docker/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eftechcombr/glpi:php-fpm-11.0.2 as BUILD
FROM eftechcombr/glpi:php-fpm-11.0.3 as BUILD
#

FROM nginxinc/nginx-unprivileged:1.27.5-alpine3.21-slim
Expand Down
2 changes: 1 addition & 1 deletion docker/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eftechcombr/glpi:base

ENV VERSION=11.0.2
ENV VERSION=11.0.3
ENV GLPI_LANG=en_US
ENV CACHE_DSN=redis://redis:6379/
ENV MARIADB_HOST=mariadb-glpi
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/glpi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ version: 1.0.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "11.0.2"
appVersion: "11.0.3"

keywords:
- glpi
Expand Down
6 changes: 3 additions & 3 deletions kubernetes/glpi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global:
# -- GLPI Application Configuration
glpi:
# GLPI version to deploy
version: "11.0.2"
version: "11.0.3"

# GLPI default language (e.g., en_US, fr_FR, pt_BR)
language: "en_US"
Expand All @@ -24,7 +24,7 @@ glpi:
# Image repository for PHP-FPM
repository: eftechcombr/glpi
# Image tag for PHP-FPM
tag: php-fpm-11.0.2
tag: php-fpm-11.0.3
# Image pull policy
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -71,7 +71,7 @@ glpi:
# Image repository for Nginx
repository: eftechcombr/glpi
# Image tag for Nginx
tag: nginx-11.0.2
tag: nginx-11.0.3
# Image pull policy
pullPolicy: IfNotPresent

Expand Down