Sign inSign up

itrevko/glpi

By itrevko

Updated about 2 months ago

GLPI 11.0.8 + PHP-FPM8.4 + NGINX

Image
Content management system
2

1.3K

itrevko/glpi repository overview

INFO

The Docker Image for Non-Interactive Deploy the GLPI with Docker\Docker-Compose\Kubernetes. This image based on "webdevops/php-nginx:8.4-alpine".

This image ready to deploy with replicas more than 1, because it has a checking concurrent startup.

SSO

The docker image contains the "singlesignon" Plugin - https://github.com/edgardmessias/glpi-singlesignon

GitHub

https://github.com/IT-REVKO-LLC/glpi

Quick start - docker-compose (persistent configuration)
services:
  glpi:
    image: itrevko/glpi:11.0.5
    container_name: glpi
    logging:
      driver: "json-file"
      options:
        max-size: "200k"
        max-file: "10"
    restart: always
    depends_on:
      - mariadb
    networks:
      - app-tier
    ports:
      - '80:80'
    volumes:
      - /mnt/docker/glpi:/app/files
  mariadb:
    image: mariadb:10.11.14
    container_name: mariadb
    logging:
      driver: "json-file"
      options:
        max-size: "200k"
        max-file: "10"
    restart: always
    environment:
      MARIADB_ROOT_PASSWORD: superpass
      MARIADB_DATABASE: glpidb
      MARIADB_USER: glpiuser
      MARIADB_PASSWORD: glpipass
    networks:
      - app-tier
    volumes:
      - /mnt/docker/mariadb:/var/lib/mysql
networks:
  app-tier: {}
Environment variables
VariableDescriptionDefault
WEB_DOCUMENT_ROOTPath to web root(needed by webdevops/php:8.4-alpine)/app/public
DB_HOSTHostname for DataBasemariadb
DB_PORTPort number for DataBase3306
DB_NAMEName of DataBaseglpidb
DB_USERName of User for Databaseglpiuser
DB_PASSWORDPass of user for DataBaseglpipass
LDAP_TRUSTED_CERTIFICATESTrusted TLS certificate of your AD\LDAP servernone
REDIS_HOSTHostname for Redis-
REDIS_PORTPort number for Redis-
REDIS_PASSPassword for connection to Redis-
REDIS_DBRedis DB Number-

Tag summary

Content type

Image

Digest

sha256:4b35d9ba9

Size

253.3 MB

Last updated

about 2 months ago

docker pull itrevko/glpi:11.0.8-sso