mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-22 00:01:09 +02:00
35 lines
1.4 KiB
Django/Jinja
35 lines
1.4 KiB
Django/Jinja
credentials: {}
|
|
docker:
|
|
services:
|
|
redis:
|
|
enabled: false # Enable Redis
|
|
database:
|
|
enabled: false # Enable the database
|
|
{{ application_id }}:
|
|
backup:
|
|
no_stop_required: true # The images that don't need to stop
|
|
disabled: true # Disables the image
|
|
database_routine: true # Instead of copying a database routine will be triggered for this container
|
|
image: ""
|
|
version: "latest"
|
|
name: "web-app-{{ application_id }}"
|
|
volumes:
|
|
data: "web-app-{{ application_id }}_data"
|
|
features:
|
|
matomo: true # Enable Matomo Tracking
|
|
css: true # Enable Global CSS Styling
|
|
port-ui-desktop: true # Enable loading of app in iframe
|
|
ldap: false # Enable LDAP Network
|
|
central_database: false # Enable Central Database Network
|
|
recaptcha: false # Enable ReCaptcha
|
|
oauth2: false # Enable the OAuth2-Proy
|
|
javascript: false # Enables the custom JS in the javascript.js.j2 file
|
|
csp:
|
|
whitelist: {} # URL's which should be whitelisted
|
|
flags: {} # Flags which should be set
|
|
domains:
|
|
canonical: {} # Urls under which the domain should be directly accessible
|
|
aliases: [] # Alias redirections to the first element of the canonical domains
|
|
rbac:
|
|
roles: {}
|