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

21 lines
299 B

version: "2"
services:
#GLPI Container
glpi:
build: ./
image: myglpi
container_name : myglpi
ports:
- "9080:80"
links:
- mysql:mysql
restart: always
#Mysql Container
mysql:
image: mysql
container_name: mysql
hostname: mysql
env_file:
- ./mysql.env