mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 10:19:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			222 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			222 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {# Base for docker services #}
 | |
| 
 | |
|     restart: {{ DOCKER_RESTART_POLICY }}
 | |
| {% if application_id | has_env  %}
 | |
|     env_file:
 | |
|       - "{{ docker_compose.files.env }}"
 | |
| {% endif %}
 | |
|     logging:
 | |
|       driver: journald
 | |
| 
 | |
| {{ "\n" }} |