mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-24 11:06:24 +02:00
9 lines
386 B
Django/Jinja
9 lines
386 B
Django/Jinja
{% include 'roles/docker-compose/templates/base.yml.j2' %}
|
|
application:
|
|
container_name: roulette_application
|
|
{{ lookup('template', 'roles/docker-container/templates/build.yml.j2') | indent(4) }}
|
|
ports:
|
|
- 127.0.0.1:{{ ports.localhost.http[application_id] }}:8080
|
|
restart: {{ DOCKER_RESTART_POLICY }}
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %} |