Refactor Confluence and Jira env templates to use official Atlassian ATL_* database variables instead of unused custom placeholders. Ensures containers connect directly to PostgreSQL without relying on CONFLUENCE_DATABASE_* or JIRA_DATABASE_* vars. See conversation: https://chatgpt.com/share/68b6ddfd-3c44-800f-a57e-244dbd7ceeb5

This commit is contained in:
2025-09-02 14:07:38 +02:00
parent 7c814e6e83
commit 8059f272d5
2 changed files with 11 additions and 10 deletions

View File

@@ -2,11 +2,11 @@
JIRA_URL="{{ JIRA_URL }}"
## Database
JIRA_DATABASE_NAME="{{ database_name }}"
JIRA_DATABASE_USER="{{ database_username }}"
JIRA_DATABASE_PASSWORD="{{ database_password }}"
JIRA_DATABASE_HOST="{{ database_host }}"
JIRA_DATABASE_PORT="{{ database_port }}"
ATL_DB_TYPE=postgres72
ATL_DB_DRIVER=org.postgresql.Driver
ATL_JDBC_URL=jdbc:postgresql://{{ database_host }}:{{ database_port }}/{{ database_name }}
ATL_JDBC_USER={{ database_username }}
ATL_JDBC_PASSWORD={{ database_password }}
ATL_PROXY_NAME={{ JIRA_HOSTNAME }}
ATL_PROXY_PORT={{ WEB_PORT }}