Closed Zoubeyer closed 1 year ago
Hello,
I can't test on Windows. I just tried with Docker Desktop and WSL with the same docker-compose file
version: "3.8"
services:
#MariaDB Container
mariadb:
image: mariadb:10.7
container_name: mariadb
hostname: mariadb
environment:
- MARIADB_ROOT_PASSWORD=password
- MARIADB_DATABASE=glpidb
- MARIADB_USER=glpi_user
- MARIADB_PASSWORD=glpi
#GLPI Container
glpi:
image: diouxx/glpi
container_name : glpi
hostname: glpi
ports:
- "80:80"
and i haven't the error
diouxx@host:/tmp$ docker-compose -f docker-compose-glpi.yml up -d
[+] Running 3/3
⠿ Network tmp_default Created 0.0s
⠿ Container glpi Started 1.4s
⠿ Container mariadb Started 1.4s
diouxx@host:/tmp$ docker-compose -f docker-compose-glpi.yml ps
NAME COMMAND SERVICE STATUS PORTS
glpi "/opt/glpi-start.sh" glpi running 0.0.0.0:80->80/tcp, 443/tcp
mariadb "docker-entrypoint.s…" mariadb running 3306/tcp
When I go on http://localhost, I have the GLPI installation web page
Hi,
I just wanted to test GLPI so I use the "qucik" docker-compose file (I'm on Windows 10) :
With this file, Docker-compose seems to run well :
But when I try to access GLPI (http://localhost:80) I have a "404 error - not found" :
Has anyone been able to use this docker-compose file (for quickly test) ?