mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	• Removed hardcoded container_port/container_healthcheck from docker-compose.yml.j2 • Added container_port=8080 and container_healthcheck to vars/main.yml • Rationale: current image listens on 8080; centralizes settings in vars Ref: https://chatgpt.com/share/68b4a69d-e4b0-800f-a4f8-6c8e4fc55ee4
		
			
				
	
	
		
			17 lines
		
	
	
		
			672 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			672 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {% include 'roles/docker-compose/templates/base.yml.j2' %}
 | |
| 
 | |
|   application:
 | |
|     image: "{{ YOURLS_IMAGE }}:{{ YOURLS_VERSION }}"
 | |
|     container_name: "{{ YOURLS_CONTAINER }}"
 | |
| {% include 'roles/docker-container/templates/base.yml.j2' %}
 | |
|     ports:
 | |
|       - "127.0.0.1:{{ ports.localhost.http[application_id] }}:{{ container_port }}"
 | |
| {% include 'roles/docker-container/templates/healthcheck/curl.yml.j2' %}
 | |
| 
 | |
| {% include 'roles/docker-container/templates/depends_on/dmbs_excl.yml.j2' %}
 | |
| {% include 'roles/docker-container/templates/networks.yml.j2' %}
 | |
| 
 | |
| {% include 'roles/docker-compose/templates/volumes.yml.j2' %}
 | |
| 
 | |
| {% include 'roles/docker-compose/templates/networks.yml.j2' %}
 |