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.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							429 B
						
					
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							429 B
						
					
					
				| version: "2"
 | |
| 
 | |
| services:
 | |
|   #GLPI Container
 | |
|   glpi:
 | |
|    build: ./
 | |
|    image: myglpi
 | |
|    container_name : myglpi
 | |
|    ports:
 | |
|     - "9080:80"
 | |
|    links:
 | |
|     - mysql:mysql
 | |
|    restart: always
 | |
|    volumes:
 | |
|     - "/etc/timezone:/etc/timezone"
 | |
|     - "/etc/localtime:/etc/localtime"
 | |
|    environment:
 | |
|     TIMEZONE: Europe/Paris
 | |
| 
 | |
|   #Mysql Container
 | |
|   mysql:
 | |
|    image: mysql
 | |
|    container_name: mysql
 | |
|    hostname: mysql
 | |
|    env_file:
 | |
|     - ./mysql.env
 |