From e8c4bfdf22a35522966fe17c5d9f50ffce781c24 Mon Sep 17 00:00:00 2001 From: cmsassot Date: Thu, 27 Oct 2022 16:52:25 +0200 Subject: [PATCH] =?UTF-8?q?cadoles-pod-hydra-dispatcher=20:=20correction?= =?UTF-8?q?=20de=20la=20boucle=20pour=20cr=C3=A9ation=20des=20volumes=20(#?= =?UTF-8?q?2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://forge.cadoles.com/Cadoles/ansible-role-sso/pulls/2 Co-authored-by: cmsassot Co-committed-by: cmsassot --- 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..2459f4f 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 }}' \