Code Monkey home page Code Monkey logo

docker-glpi-1's Introduction

alternate text

What's GLPI?

GLPI is the Information Resource-Manager with an additional Administration- Interface. You can use it to build up a database with an inventory for your company (computer, software, printers...). It has enhanced functions to make the daily life for the administrators easier, like a job-tracking-system with mail-notification and methods to build a database with basic information about your network-topology.

About image

GLPI version: 9.4.2 PHP version: 7.3.4 Web Server: Apache 2.4.25 OS: Debian Stretch

How to use this image

You will need a database. The following example run container in background linking to a database container.

# docker run -d -P --link some-mysql cmotta2016/glpi

Persistent data

To make data persistent, export the following volume:

# docker run -d -P --link some-mysql -v /some/host/dir/:/var/www/glpi cmotta2016/glpi

Docker Compose

Deploy both glpi and mysql with compose. First create a dir and file called docker-compose.yml with following content:

version: '3'

services:
   db:
     image: mysql:5.7.25
     volumes:
       - database:/var/lib/mysql
     restart: unless-stopped
     environment:
       MYSQL_ROOT_PASSWORD: <your_custom_password>
     container_name: database

   glpi:
     image: cmotta2016/glpi
     ports:
       - "80"
     restart: unless-stopped
     volumes:
       - glpiserver:/var/www/glpi
     container_name: glpiserver
     
volumes:
  database:
  glpiserver:

So run the following command and enjoy it:

# docker-compose up -d

docker-glpi-1's People

Contributors

cmotta2016 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.