mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 03:07:14 +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
33 lines
703 B
YAML
33 lines
703 B
YAML
credentials: {}
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
application:
|
|
image: atlassian/confluence
|
|
version: latest
|
|
name: confluence
|
|
volumes:
|
|
data: "confluence_data"
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
desktop: true
|
|
central_database: true
|
|
logout: true
|
|
oidc: false # Not enabled for demo version
|
|
ldap: false # Not enabled for demo version
|
|
server:
|
|
csp:
|
|
whitelist: {}
|
|
flags:
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
script-src:
|
|
unsafe-inline: true
|
|
domains:
|
|
canonical:
|
|
- "confluence.{{ PRIMARY_DOMAIN }}"
|
|
rbac:
|
|
roles: {}
|