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
1 changed files with 3 additions and 4 deletions
Showing only changes of commit 2db4ad991a - Show all commits

View File

@ -6,10 +6,9 @@ PODMAN_ARGS="\
--tz=local \ --tz=local \
-p 127.0.0.1:3000:80 \ -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 \
/etc/hydra-dispatcher/theme/templates:/var/www/templates \ {% for item in hydra_dispatcher_mounts %}
/etc/hydra-dispatcher/theme/fonts:/var/www/public/build/fonts \ -v "{{ item.host }}:{{ item.container }}" \
/etc/hydra-dispatcher/theme/theme.css:/var/www/public/build/theme/theme.css \ {% endfor %}
/etc/hydra-dispatcher/theme/images:/var/www/public/build/images
-e APP_ENV=prod \ -e APP_ENV=prod \
-e 'APP_DEBUG={{ hydra_dispatcher_debug }}' \ -e 'APP_DEBUG={{ hydra_dispatcher_debug }}' \
-e HYDRA_ADMIN_BASE_URL=http://10.0.2.2:4445 \ -e HYDRA_ADMIN_BASE_URL=http://10.0.2.2:4445 \