GLPI is a Free Asset and IT Management Software package, Data center management, ITIL Service Desk.
2.0K
GLPI (acronym: French: Gestionnaire Libre de Parc Informatique, or "Open Source IT Equipment Manager" in English) is an open source IT Asset Management, issue tracking system and service desk system. This software is written in PHP and distributed under the GNU General Public License.
As an open source technology, anyone can run, modify or develop the code. This way, contributors can participate in the development of the software by committing free and open source supplementary modules on GitHub.
GLPI is a web-based application helping companies to manage their information system. The solution is able to build an inventory of all the organization's assets and to manage administrative and financial tasks. The system's functionalities help IT Administrators to create a database of technical resources, as well as a management and history of maintenances actions. Users can declare incidents or requests (based on asset or not) thanks to the Helpdesk feature.
| Architecture | Tag |
|---|---|
| x86-64 | amd64-latest |
Here are an example snippet to help you get started creating a container.
---
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- mysql:/var/lib/mysql:rw
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: glpi
MYSQL_DATABASE: glpi
MYSQL_USER: glpi
MYSQL_PASSWORD: glpi
glpi:
depends_on:
- db
image: fjcj/glpi:latest
ports:
- "80:80"
volumes:
- glpi:/var/www/html:rw
restart: unless-stopped
volumes:
mysql:
glpi:
Webui can be found at http://<your-ip>:80
More information can be found in their official documentation here .
Below are the instructions for updating containers:
docker-compose pull
docker-compose pull glpidocker-compose up -d
docker-compose up -d glpidocker image pruneEnjoy!
Content type
Image
Digest
sha256:ceb67c894…
Size
231.5 MB
Last updated
over 2 years ago
docker pull fjcj/glpi