docker volume create glpi-files
docker run -dt --name glpi
--hostname glpi
--restart=always
--link db-mysql:mysql
--mount type=volume,src=glpi-files,dst=/var/www/html
-p 3080:80
--network=redelocal
--ip=192.168.0.8
wsiqueira/glpi
CREATE DATABASE glpi;
CREATE USER 'glpi'@'localhost' IDENTIFIED BY 'glpi';
GRANT ALL PRIVILEGES ON glpi.* TO 'glpi'@'%' IDENTIFIED BY 'glpi';
FLUSH PRIVILEGES;
exit
Content type
Image
Digest
Size
274.6 MB
Last updated
about 7 years ago
docker pull wsiqueira/glpi