mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-11-04 04:08:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			843 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			843 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
{% include 'roles/docker-compose/templates/base.yml.j2' %}
 | 
						|
 | 
						|
# Container Configuration
 | 
						|
 | 
						|
  application:
 | 
						|
{% set container_port = 80 %}
 | 
						|
    image: "{{ snipe_it_image }}:{{ snipe_it_version }}"
 | 
						|
    container_name: "{{ snipe_it_container }}"
 | 
						|
{% include 'roles/docker-container/templates/base.yml.j2' %}
 | 
						|
    volumes:
 | 
						|
      - data:/var/lib/snipeit
 | 
						|
    ports:
 | 
						|
      - "127.0.0.1:{{ ports.localhost.http[application_id] }}:{{ container_port }}"
 | 
						|
{% include 'roles/docker-container/templates/depends_on/dmbs_excl.yml.j2' %}
 | 
						|
{% include 'roles/docker-container/templates/networks.yml.j2' %}
 | 
						|
{% include 'roles/docker-container/templates/healthcheck/tcp.yml.j2' %}
 | 
						|
 | 
						|
# Compose Configuration
 | 
						|
 | 
						|
{% include 'roles/docker-compose/templates/volumes.yml.j2' %}
 | 
						|
  data:
 | 
						|
    name: "{{ snipe_it_volume }}"
 | 
						|
 | 
						|
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
 |