Sign inSign up

kaneymhf/docker-glpi

By kaneymhf

•Updated over 1 year ago

GLPI Docker image - With Most Extensions

Image
1

3.2K

kaneymhf/docker-glpi repository overview

Docker Pulls Docker Stars

⁠Docker GLPI

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

⁠Docker Informations

  • This image expose the following port
PortUsage
80/tcpHTTP Web application
  • This image takes theses environnements variables as parameters
EnvironmentTypeDefaultUsage
DB_HOSTStringmariadbSet the database host
DB_PORTInt3306Set the database port
DB_DATABASEStringglpiSet the database name
DB_USERStringglpiSet the database user
DB_PASSWORDStringglpiSet the database password
INSTALLBoolean
(0/1)
0Set to 1 if glpi is installing or updating
  • The following volume is exposed by this image
VolumeUsage
/etc/glpiThe config path of GLPI
/var/lib/glpiThe files path of GLPI
/var/www/glpi/pluginsThe plugin path of GLPI
/var/www/glpi/marketplaceThe marketplace path of GLPI
/var/log/glpiThe logs path of GLPI

⁠Usage

⁠Docker-compose Specific configuration examples

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

Tag summary

Content type

Image

Digest

sha256:722b05150…

Size

604.1 MB

Last updated

about 2 years ago

docker pull kaneymhf/docker-glpi