23 lines
		
	
	
		
			384 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			384 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# 2022-10-29
 | 
						|
# Hyperling.com configuration.
 | 
						|
 | 
						|
services:
 | 
						|
  app:
 | 
						|
    container_name: www-app
 | 
						|
    build:
 | 
						|
      context: ./
 | 
						|
      network: host
 | 
						|
    restart: always
 | 
						|
    ports:
 | 
						|
      - 8317:8080
 | 
						|
    environment:
 | 
						|
      - BRANCH=$BRANCH
 | 
						|
    volumes:
 | 
						|
      - ./files:/var/www/api/files
 | 
						|
    deploy:
 | 
						|
      mode: global
 | 
						|
      resources:
 | 
						|
        limits:
 | 
						|
          cpus: $CPU
 | 
						|
          memory: $MEM
 |