mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 15:39:57 +00:00
11 lines
424 B
Django/Jinja
11 lines
424 B
Django/Jinja
---
|
|
{% include 'roles/docker-compose/templates/base.yml.j2' %}
|
|
{{ LITTLEJS_SERVICE }}:
|
|
container_name: {{ LITTLEJS_CONTAINER }}
|
|
{{ lookup('template', 'roles/docker-container/templates/build.yml.j2') | indent(4) }}
|
|
ports:
|
|
- 127.0.0.1:{{ ports.localhost.http[application_id] }}:80
|
|
{% include 'roles/docker-container/templates/base.yml.j2' %}
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
|