mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 03:07:14 +02:00
Confluence: README added; demo disables OIDC/LDAP; Dockerfile overlay; docker-compose now uses CONFLUENCE_CUSTOM_IMAGE and DB depends include; env.j2 adds ATL_* and JVM_*; vars use integer math (//) for Xmx/Xms and expose CUSTOM_IMAGE. Jira: initial role skeleton with README, config/meta/tasks; Dockerfile overlay; docker-compose using JIRA_CUSTOM_IMAGE and DB depends include; env.j2 with proxy + JVM envs; vars with integer-safe memory sizing. Context: https://chatgpt.com/share/68b6b592-2250-800f-b68e-b37ae98dbe70
23 lines
835 B
Django/Jinja
23 lines
835 B
Django/Jinja
|
|
{% include 'roles/docker-compose/templates/base.yml.j2' %}
|
|
application:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: "{{ JIRA_CUSTOM_IMAGE }}"
|
|
container_name: "{{ JIRA_CONTAINER }}"
|
|
hostname: '{{ JIRA_HOSTNAME }}'
|
|
ports:
|
|
- "127.0.0.1:{{ ports.localhost.http[application_id] }}:8080"
|
|
volumes:
|
|
- 'data:/var/atlassian/application-data/jira'
|
|
{% include 'roles/docker-container/templates/healthcheck/curl.yml.j2' %}
|
|
{% include 'roles/docker-container/templates/base.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' %}
|
|
data:
|
|
name: {{ JIRA_DATA_VOLUME }}
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %} |