mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-09 11:47:14 +02:00
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:
@@ -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 }}
|
||||
|
Reference in New Issue
Block a user