mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	- Added conditional '--pull' flag on retry in docker-compose build handler, tied to MODE_UPDATE - Added 'pull_policy: never' to multiple docker-compose service templates to prevent unwanted image pulls - Fixed minor formatting issues (e.g. Nextcloud volume spacing, WordPress desktop alignment) Reference: https://chatgpt.com/share/68b0207a-4d9c-800f-b76f-9515885e5183
		
			
				
	
	
		
			28 lines
		
	
	
		
			993 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			993 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {% include 'roles/docker-compose/templates/base.yml.j2' %}
 | |
|   application:
 | |
| 
 | |
| {% include 'roles/docker-container/templates/base.yml.j2' %}
 | |
| {% set container_port = 80 %}
 | |
|     container_name: {{ AKAUNTING_CONTAINER }}
 | |
|     image: "{{ AKAUNTING_IMAGE }}:{{ AKAUNTING_VERSION }}"
 | |
|     build:
 | |
|       context:    {{ docker_repository_path }}
 | |
|       dockerfile: Dockerfile
 | |
|     pull_policy: never
 | |
|     ports:
 | |
|       - 127.0.0.1:{{ ports.localhost.http[application_id] }}:{{ container_port }}
 | |
|     volumes:
 | |
|       - data:/var/www/html
 | |
| {% if akaunting_setup_enabled | bool %}
 | |
|     environment:
 | |
|       - AKAUNTING_SETUP=true
 | |
| {% endif %}
 | |
| {% include 'roles/docker-container/templates/healthcheck/tcp.yml.j2' %}
 | |
| {% include 'roles/docker-container/templates/networks.yml.j2' %}
 | |
| {% include 'roles/docker-container/templates/depends_on/dmbs_excl.yml.j2' %}
 | |
| 
 | |
| {% include 'roles/docker-compose/templates/volumes.yml.j2' %}
 | |
|   data:
 | |
|     name: {{ AKAUNTING_VOLUME }}
 | |
| 
 | |
| {% include 'roles/docker-compose/templates/networks.yml.j2' %} |