From 6d3fb20664f14781c8b277fbd48bdd16a6cf4744 Mon Sep 17 00:00:00 2001 From: cmsassot Date: Mon, 12 Sep 2022 11:41:11 +0200 Subject: [PATCH 1/2] =?UTF-8?q?cadoles-pod-hydra-dispatcher=20:=20correcti?= =?UTF-8?q?on=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 }}' \ -- 2.17.1 From eafc4490cf7ffdc14c0c0897e305489d38ed03cf Mon Sep 17 00:00:00 2001 From: cmsassot Date: Tue, 13 Sep 2022 11:17:46 +0200 Subject: [PATCH 2/2] fix typo --- templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 b/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 index 2045669..2459f4f 100644 --- a/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 +++ b/templates/cadoles-pod-hydra-dispatcher-v1.conf.j2 @@ -7,7 +7,7 @@ PODMAN_ARGS="\ -p 127.0.0.1:3000:80 \ -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 }}' \ -- 2.17.1