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.
docker-glpi/docker-compose-test.yml

26 lines
485 B

version: "2"
services:
#GLPI Container
glpi:
build: ./
image: myglpi
container_name : myglpi
ports:
- "9080:80"
links:
- mysql:mysql
restart: always
volumes:
- "./timezone.ini:/etc/php/7.0/cli/php.ini"
- "./timezone.ini:/etc/php/7.0/apache2/php.ini"
- "/etc/timezone:/etc/timezone"
- "/etc/localtime:/etc/localtime"
#Mysql Container
mysql:
image: mysql
container_name: mysql
hostname: mysql
env_file:
- ./mysql.env