GLPI Docker image - With Most Extensions
3.2K
This images contains an instance of GLPI version 10.0.10 served by apache 2.4 and php 8.2 on port 80, based on CentOS 7 Linux
| Port | Usage |
|---|---|
| 80/tcp | HTTP Web application |
| Environment | Type | Default | Usage |
|---|---|---|---|
| DB_HOST | String | mariadb | Set the database host |
| DB_PORT | Int | 3306 | Set the database port |
| DB_DATABASE | String | glpi | Set the database name |
| DB_USER | String | glpi | Set the database user |
| DB_PASSWORD | String | glpi | Set the database password |
| INSTALL | Boolean (0/1) | 0 | Set to 1 if glpi is installing or updating |
| Volume | Usage |
|---|---|
| /etc/glpi | The config path of GLPI |
| /var/lib/glpi | The files path of GLPI |
| /var/www/glpi/plugins | The plugin path of GLPI |
| /var/www/glpi/marketplace | The marketplace path of GLPI |
| /var/log/glpi | The logs path of GLPI |
version: "3.2"
services:
#Mysql Container
mysql:
image: mariadb:10.4
container_name: mysql
hostname: mysql
environment:
- MYSQL_ROOT_PASSWORD=glpi
- MYSQL_DATABASE=glpi
- MYSQL_USER=glpi
- MYSQL_PASSWORD=glpi
- TZ=Etc/GMT+3
volumes:
- /path/to/data:/var/lib/mysql
#GLPI Container
glpi:
image: kaneymhf/docker-glpi
container_name : glpi
hostname: glpi
ports:
- "80:80"
environment:
- TZ=Etc/GMT+3
- DB_HOST=mysql
- DB_PORT=3306
- DB_USER=glpi
- DB_PASSWORD=glpi
- DB_DATABASE=glpi
- INSTALL=1
volumes:
- /path/to/files:/var/lib/glpi
- /path/to/logs:/var/log/glpi
- /path/to/plugins:/var/www/html/glpi/plugins
- /path/to/marketplace:/var/www/html/glpi/marketplace
- /path/to/config:/etc/glpi
Content type
Image
Digest
sha256:722b05150…
Size
604.1 MB
Last updated
about 2 years ago
docker pull kaneymhf/docker-glpi