mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-23 00:31:09 +02:00
26 lines
850 B
Django/Jinja
26 lines
850 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' %}
|
|
redis:
|
|
data:
|
|
name: "{{ snipe_it_volume }}"
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
|