Sign inSign up

sc4ndium90/glpi-docker

By sc4ndium90

Updated over 1 year ago
Archived

GLPI in Docker - ! Not be production ready ! Use it at your own risk !

Image
0

274

sc4ndium90/glpi-docker repository overview

! May not be production ready ! Use it at your own risk !!

A simple docker container to run GLPI (Gestionnaire Libre de Parc Informatique), a ticket and asset management tool.

docker-compose.yaml example file

services:
  glpi:
    image: glpi
    container_name: glpi
    restart: always
    networks:
      - internal
    ports:
      - "80:80"
  db:
    image: mariadb:10.5
    container_name: glpi-db
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: root_password
      MYSQL_DATABASE: glpi
      MYSQL_USER: glpi_user
      MYSQL_PASSWORD: glpi_password
    networks:
      - internal
networks:
  internal: 
    external: false
    driver: bridge

Tag summary

Content type

Image

Digest

sha256:4021a2014

Size

201.5 MB

Last updated

over 1 year ago

docker pull sc4ndium90/glpi-docker