15 lines
		
	
	
		
			258 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			258 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "3.4"
 | 
						|
 | 
						|
services: 
 | 
						|
  mes_api:
 | 
						|
    container_name: aptmesapi_fm
 | 
						|
    build: 
 | 
						|
      context: .
 | 
						|
      dockerfile: Dockerfile
 | 
						|
    restart: always
 | 
						|
    logging: 
 | 
						|
      driver: "json-file"
 | 
						|
      options: 
 | 
						|
         max-size: "5g"
 | 
						|
    ports: 
 | 
						|
    - "3107:8100" |