镜像概览

完整引用
docker.io/elestio/glpi
Registry
docker.io
命名空间
elestio
仓库
glpi
已缓存 Tag 数
31
最近同步
07/06/2026, 04:24 PM

简介

Elestio 打包的 GLPI IT 资产与工单系统镜像,集成 Apache/PHP 与 MariaDB 客户端,适合中小企业 ITSM 与库存管理部署。

详细介绍

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(若需)。

最新 Tag(20 条)

查看全部 31 个 Tag →
Tag架构推送时间大小Digest同步期望操作
docker.io/elestio/glpi
:11.0.8
linux/amd64
2026/07/06 18:38351.0 MBsha256:a5e21ff23916
docker.io/elestio/glpi
:latest
linux/amd64
2026/07/06 18:33351.0 MBsha256:6caedae908c3
docker.io/elestio/glpi
:11.0.7
linux/amd64
2026/06/23 14:19350.6 MBsha256:73e6994cb6ff
docker.io/elestio/glpi
:11.0.6
linux/amd64
2026/04/21 11:05347.0 MBsha256:8dbad9ff75e8
docker.io/elestio/glpi
:11.0.4
linux/amd64
2026/01/07 03:28334.0 MBsha256:49df25ea8bc2
docker.io/elestio/glpi
:11.0.3
linux/amd64
2025/12/03 21:35122.6 MBsha256:a4c33f2d3d88
docker.io/elestio/glpi
:11.0.2
linux/amd64
2025/12/03 01:31122.6 MBsha256:a4e25ab9f1db
docker.io/elestio/glpi
:11.0.1
linux/amd64
2025/11/05 09:50122.6 MBsha256:16fa1af9ee2a
docker.io/elestio/glpi
:11.0.0
linux/amd64
2025/10/08 17:09123.4 MBsha256:5d5e05779ad4
docker.io/elestio/glpi
:11.0.0-rc5
linux/amd64
2025/09/30 14:44123.4 MBsha256:264716c7f62e
docker.io/elestio/glpi
:10.0.20
linux/amd64
2025/09/17 06:15123.4 MBsha256:6aa2b37347ea
docker.io/elestio/glpi
:11.0.0-rc4
linux/amd64
2025/09/09 10:23123.3 MBsha256:4aeb411b32d6
docker.io/elestio/glpi
:11.0.0-rc3
linux/amd64
2025/08/28 04:10123.3 MBsha256:4aeb411b32d6
docker.io/elestio/glpi
:11.0.0-rc2
linux/amd64
2025/08/21 13:58123.3 MBsha256:4aeb411b32d6
docker.io/elestio/glpi
:11.0.0-rc1
linux/amd64
2025/08/06 10:01123.3 MBsha256:4aeb411b32d6
docker.io/elestio/glpi
:11.0.0-beta7
linux/amd64
2025/07/24 16:00123.3 MBsha256:4aeb411b32d6
docker.io/elestio/glpi
:11.0.0-beta6
linux/amd64
2025/07/02 14:17123.3 MBsha256:23f9b593a3c6
docker.io/elestio/glpi
:11.0.0-beta5
linux/amd64
2025/06/16 19:52123.3 MBsha256:fb1642dd368e
docker.io/elestio/glpi
:11.0.0-beta4
linux/amd64
2025/06/04 03:37123.3 MBsha256:3ceda817cc27
docker.io/elestio/glpi
:11.0.0-beta3
linux/amd64
2025/05/20 10:54123.3 MBsha256:c2ed286365f4