mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			309 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
|     healthcheck:
 | |
|       test: 
 | |
|         - "CMD"
 | |
|         - "wget"
 | |
|         - "--spider"
 | |
|         - "--proxy=off"
 | |
|         - "http://127.0.0.1{{ (":" ~ container_port) if container_port is defined else '' }}/{{ container_healthcheck | default('') }}"
 | |
|       interval: 1m
 | |
|       timeout: 10s
 | |
|       retries: 3
 | |
| {{ "\n" }} |