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

Merged
wpetit merged 5 commits from hydra-dispatcher-mount into master 2022-09-09 15:29:21 +02:00
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 \