Overview
- Full name
docker.io/elestio/glpi- Registry
- docker.io
- Namespace
- elestio
- Repository
- glpi
- Cached tags
- 31
- Last synced
- 07/06/2026, 04:24 PM
Introduction
Elestio 打包的 GLPI IT 资产与工单系统镜像,集成 Apache/PHP 与 MariaDB 客户端,适合中小企业 ITSM 与库存管理部署。
Details
elestio/glpi 提供 GLPI 开源 ITSM 的容器化发行,管理员通过 Web 管理硬件资产、工单、合同与知识库。镜像通常需外接 MariaDB/MySQL 存储业务数据,首次访问完成安装向导。与 bare-metal LAMP 相比 Elestio 预调 PHP 与 cron;生产应固定 tag、挂载 files/ 与插件目录,HTTPS 经反向代理,数据库定期备份。
快速启动
docker run -d --name glpi \
-p 8080:80 \
-e DB_HOST=mariadb -e DB_NAME=glpi -e DB_USER=glpi -e DB_PASS=secret \
docker.io/elestio/glpi:latest
推荐实践
docker run -d --name glpi \
--restart unless-stopped \
-p 8080:80 \
-v /data/glpi/files:/var/www/html/glpi/files \
-v /data/glpi/plugins:/var/www/html/glpi/plugins \
-e DB_HOST=mariadb.internal \
-e DB_NAME=glpi -e DB_USER=glpi -e DB_PASS=StrongPass1 \
-e TZ=Asia/Shanghai \
docker.io/elestio/glpi:10.0.0
核心参数说明
-p 8080:80— GLPI Web 界面-e DB_HOST/DB_NAME/DB_USER/DB_PASS— MariaDB 连接参数-v .../files:...— 附件与文档上传目录-v .../plugins:...— 插件持久化--restart unless-stopped— ITSM 平台持续可用- 固定 tag — 升级前备份 DB 与 files
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: glpi
spec:
replicas: 2
selector:
matchLabels:
app: glpi
template:
metadata:
labels:
app: glpi
spec:
containers:
- name: glpi
image: docker.io/elestio/glpi:10.0.0
ports:
- containerPort: 80
envFrom:
- secretRef:
name: glpi-db
volumeMounts:
- name: files
mountPath: /var/www/html/glpi/files
- name: plugins
mountPath: /var/www/html/glpi/plugins
volumes:
- name: files
persistentVolumeClaim:
claimName: glpi-files
- name: plugins
persistentVolumeClaim:
claimName: glpi-plugins
---
apiVersion: v1
kind: Service
metadata:
name: glpi
spec:
selector:
app: glpi
ports:
- port: 80
targetPort: 80
MariaDB 独立 StatefulSet;PVC 存放附件,Ingress 配置 TLS 与 session affinity(若需)。
Latest tags (20)
View all 31 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/elestio/glpi :11.0.8 | linux/amd64 | 2026/07/06 18:38 | 351.0 MB | sha256:a5e21ff23916… | |||
docker.io/elestio/glpi :latest | linux/amd64 | 2026/07/06 18:33 | 351.0 MB | sha256:6caedae908c3… | |||
docker.io/elestio/glpi :11.0.7 | linux/amd64 | 2026/06/23 14:19 | 350.6 MB | sha256:73e6994cb6ff… | |||
docker.io/elestio/glpi :11.0.6 | linux/amd64 | 2026/04/21 11:05 | 347.0 MB | sha256:8dbad9ff75e8… | |||
docker.io/elestio/glpi :11.0.4 | linux/amd64 | 2026/01/07 03:28 | 334.0 MB | sha256:49df25ea8bc2… | |||
docker.io/elestio/glpi :11.0.3 | linux/amd64 | 2025/12/03 21:35 | 122.6 MB | sha256:a4c33f2d3d88… | |||
docker.io/elestio/glpi :11.0.2 | linux/amd64 | 2025/12/03 01:31 | 122.6 MB | sha256:a4e25ab9f1db… | |||
docker.io/elestio/glpi :11.0.1 | linux/amd64 | 2025/11/05 09:50 | 122.6 MB | sha256:16fa1af9ee2a… | |||
docker.io/elestio/glpi :11.0.0 | linux/amd64 | 2025/10/08 17:09 | 123.4 MB | sha256:5d5e05779ad4… | |||
docker.io/elestio/glpi :11.0.0-rc5 | linux/amd64 | 2025/09/30 14:44 | 123.4 MB | sha256:264716c7f62e… | |||
docker.io/elestio/glpi :10.0.20 | linux/amd64 | 2025/09/17 06:15 | 123.4 MB | sha256:6aa2b37347ea… | |||
docker.io/elestio/glpi :11.0.0-rc4 | linux/amd64 | 2025/09/09 10:23 | 123.3 MB | sha256:4aeb411b32d6… | |||
docker.io/elestio/glpi :11.0.0-rc3 | linux/amd64 | 2025/08/28 04:10 | 123.3 MB | sha256:4aeb411b32d6… | |||
docker.io/elestio/glpi :11.0.0-rc2 | linux/amd64 | 2025/08/21 13:58 | 123.3 MB | sha256:4aeb411b32d6… | |||
docker.io/elestio/glpi :11.0.0-rc1 | linux/amd64 | 2025/08/06 10:01 | 123.3 MB | sha256:4aeb411b32d6… | |||
docker.io/elestio/glpi :11.0.0-beta7 | linux/amd64 | 2025/07/24 16:00 | 123.3 MB | sha256:4aeb411b32d6… | |||
docker.io/elestio/glpi :11.0.0-beta6 | linux/amd64 | 2025/07/02 14:17 | 123.3 MB | sha256:23f9b593a3c6… | |||
docker.io/elestio/glpi :11.0.0-beta5 | linux/amd64 | 2025/06/16 19:52 | 123.3 MB | sha256:fb1642dd368e… | |||
docker.io/elestio/glpi :11.0.0-beta4 | linux/amd64 | 2025/06/04 03:37 | 123.3 MB | sha256:3ceda817cc27… | |||
docker.io/elestio/glpi :11.0.0-beta3 | linux/amd64 | 2025/05/20 10:54 | 123.3 MB | sha256:c2ed286365f4… |