mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 19:27:18 +02:00
- Fix BookWyrm email SSL/TLS handling (use ternary without 'not' for clarity) - Add truststore_enabled flag in Confluence config and vars - Wire JVM_SUPPORT_RECOMMENDED_ARGS to disable UPM signature check if truststore is disabled - Add placeholder style.css.j2 for Confluence See conversation: https://chatgpt.com/share/68b80024-7100-800f-a2fe-ba8b9f5cec05
11 lines
492 B
Django/Jinja
11 lines
492 B
Django/Jinja
FROM "{{ CONFLUENCE_IMAGE }}:{{ CONFLUENCE_VERSION }}"
|
|
|
|
# Optional: install OIDC SSO app (example path/name)
|
|
# COPY ./plugins/atlassian-sso-dc-latest.obr /opt/atlassian/confluence/confluence/WEB-INF/atlassian-bundled-plugins/
|
|
|
|
# Ensure proper permissions for app data
|
|
RUN mkdir -p {{ CONFLUENCE_HOME }} && \
|
|
chown -R 2001:2001 {{ CONFLUENCE_HOME }}
|
|
RUN printf "confluence.home={{ CONFLUENCE_HOME }}\n" \
|
|
> /opt/atlassian/confluence/confluence/WEB-INF/classes/confluence-init.properties
|