Configuration pour personnalisation du thème sur hydra-dispatcher (#1)

- Ajout des variables nécessaires pour la personnalisation du [thème](https://forge.cadoles.com/CNOUS/hydra-dispatcher-mse-theme) sur [hydra-dispatcher](https://forge.cadoles.com/Cadoles/hydra-dispatcher)

Reviewed-on: #1
Co-authored-by: cmsassot <cmsassot@cadoles.com>
Co-committed-by: cmsassot <cmsassot@cadoles.com>
This commit is contained in:
cmsassot 2022-09-09 15:29:21 +02:00 committed by wpetit
parent 30b8550a4c
commit 8d0e7026e4
2 changed files with 5 additions and 1 deletions

View File

@ -70,6 +70,7 @@ hydra_dispatcher_available_locales:
- en
hydra_dispatcher_sentry_dsn:
hydra_dispatcher_sentry_environment:
hydra_dispatcher_mounts: []
# Hydra Passwordless configuration

View File

@ -5,7 +5,10 @@ PODMAN_ARGS="\
--network=slirp4netns:allow_host_loopback=true \
--tz=local \
-p 127.0.0.1:3000:80 \
-v /etc/hydra-dispatcher/conf.d:/var/www/config/hydra \
-v /etc/hydra-dispatcher/conf.d:/var/www/config/hydra \
{% for item in hydra_dispatcher_mounts %}
-v "{{ item.host }}:{{ item.container }}" \
{% endfor %}
-e APP_ENV=prod \
-e 'APP_DEBUG={{ hydra_dispatcher_debug }}' \
-e HYDRA_ADMIN_BASE_URL=http://10.0.2.2:4445 \