From 6d3fb20664f14781c8b277fbd48bdd16a6cf4744 Mon Sep 17 00:00:00 2001 From: cmsassot Date: Mon, 12 Sep 2022 11:41:11 +0200 Subject: [PATCH] =?UTF-8?q?cadoles-pod-hydra-dispatcher=20:=20correction?= =?UTF-8?q?=20de=20la=20boucle=20pour=20cr=C3=A9ation=20des=20volumes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cadoles-pod-hydra-dispatcher : correction de la boucle pour création des volumes --- templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 b/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 index d1333fb..2045669 100644 --- a/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 +++ b/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 @@ -5,9 +5,9 @@ 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 }}" \ + -v {{ item.host }}:{{ item.container }} \ {% endfor %} -e APP_ENV=prod \ -e 'APP_DEBUG={{ hydra_dispatcher_debug }}' \