mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-19 15:04:23 +02:00
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
repository: "discourse_repository" # Name of the repository folder
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
port-ui-desktop: true
|
|
oidc: true
|
|
central_database: true
|
|
ldap: false # @todo implement and activate
|
|
csp:
|
|
flags:
|
|
style-src:
|
|
unsafe-inline: true
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
whitelist:
|
|
font-src:
|
|
- "http://*.{{primary_domain}}"
|
|
domains:
|
|
canonical:
|
|
- "forum.{{ primary_domain }}"
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
redis:
|
|
enabled: true
|
|
# This container is propably wrong name.
|
|
# Chance is high that the name is discourse_application.
|
|
# @todo check this out and repair it if necessary
|
|
discourse:
|
|
name: "discourse"
|
|
image: "local_discourse/discourse_application" # Necessary to define this for the docker 2 loc backup
|
|
backup:
|
|
no_stop_required: true
|
|
volumes:
|
|
data: discourse_data
|
|
network: discourse
|