Project to deploy GLPI with plugin Glpi Inventory
107
Deploy with Docker Compose ´´´ version: "3.5" services: glpifusion-bbdd: image: mariadb:10.8 container_name: glpifusion-bbdd hostname: glpifusion_mariadb restart: unless-stopped volumes: - mysql-data:/var/lib/mysql environment: MARIADB_ROOT_PASSWORD: secret MARIADB_DATABASE: glpi MARIADB_USER: glpi MARIADB_PASSWORD: glpi MARIADB_PORT: 3306 TZ: "Europe/Madrid" ports: - "3306:3306"
glpifusion-app: image: founds/glpi-inventory:arm0.1 container_name: glpifusion-app hostname: glpifusion_app restart: unless-stopped depends_on: - glpifusion-bbdd environment: - TIMEZONE=Europe/Madrid volumes: - glpi-data:/var/www/html ports: - "80:80" - "443:443" volumes: mysql-data: glpi-data: ´´´
Content type
Image
Digest
sha256:e367b773c…
Size
259.9 MB
Last updated
over 3 years ago
docker pull founds/glpi-inventory:arm0.1