GLPI is a free and open source Asset and IT Management Software package, Data center management, ITIL Service Desk, licenses tracking and software auditing.
A few links:
This repository contains build files for docker images available in Github Container Registry and Docker hub.
via docker compose
services:
glpi:
image: "glpi/glpi:latest"
restart: "unless-stopped"
volumes:
- "./storage/glpi:/var/glpi:rw"
depends_on:
- "db"
ports:
- "80:80"
db:
image: "mysql"
restart: "unless-stopped"
volumes:
- "./storage/mysql:/var/lib/mysql"
environment:
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
MYSQL_DATABASE: "glpi"
MYSQL_USER: "glpi"
MYSQL_PASSWORD: "glpi"
expose:
- "3306"
Then launch it with:
docker-compose up -d
Once the containers are running, you can access GLPI at http://localhost
and follow the installation instructions.
At the time of database creation, you can use the following credentials:
- Hostname:
db
- Database:
glpi
- User:
glpi
- Password:
glpi
By default, the glpi/glpi
image provides a volume containing its config
, marketplace
and files
directories.