mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 11:17:17 +02:00
- Add docker compose build trigger in docker-compose tasks - Cleanup svc-prx-openresty vars - Enable unsafe-inline CSP flags for BookWyrm, Confluence, Jira to allow Atlassian inline scripts - Generalize CONFLUENCE_HOME usage in vars, env and docker-compose - Ensure confluence-init.properties written with correct home - Add JVM_SUPPORT_RECOMMENDED_ARGS to pass atlassian.home - Update README to reference {{ CONFLUENCE_HOME }} See: https://chatgpt.com/share/68b7582a-aeb8-800f-a14f-e98c5b4e6c70
10 lines
491 B
Django/Jinja
10 lines
491 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 |