You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
803 B
45 lines
803 B
version: "2"
|
|
|
|
services:
|
|
#Mysql Persitance Data
|
|
mysql-data:
|
|
image: busybox
|
|
container_name: mysql-data
|
|
volumes:
|
|
- /var/lib/mysql:/var/lib/mysql
|
|
|
|
#Mysql Container
|
|
mysql:
|
|
image: mysql
|
|
container_name: mysql
|
|
hostname: mysql
|
|
volumes_from:
|
|
- mysql-data
|
|
env_file:
|
|
- ./mysql.env
|
|
|
|
#GLPI Pesitance Data
|
|
glpi-data:
|
|
image: busybox
|
|
container_name: glpi-data
|
|
volumes:
|
|
- /var/www/html/glpi:/var/www/html/glpi
|
|
|
|
#GLPI Container
|
|
glpi:
|
|
image: glpi
|
|
container_name : glpi
|
|
hostname: glpi
|
|
ports:
|
|
- "80:80"
|
|
links:
|
|
- mysql:mysql
|
|
volumes_from:
|
|
- glpi-data
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone
|
|
- /etc/localtime:/etc/localtime
|
|
environment:
|
|
- TIMEZONE=Europe/Brussels
|
|
restart: always
|