From d26517e00134f2e0b041ee1ddad36cbee717e524 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Fri, 25 Feb 2022 13:52:29 +0100 Subject: [PATCH] Matrix : pull images before compose --- podman-matrix/10_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/podman-matrix/10_install.sh b/podman-matrix/10_install.sh index cd48cbc..17a5d4b 100755 --- a/podman-matrix/10_install.sh +++ b/podman-matrix/10_install.sh @@ -20,6 +20,8 @@ if ! podman volume exists ${dbvolume} ; then exit 1 fi +podman pull ${postgres_image}:${postgres_version} && +podman pull ${synapse_image}:${synapse_version} && podman pod create --publish ${listen_if}:${listen_port}:8008 --name ${pod_name} && podman run -d --name ${db_container_name} --pod ${pod_name} \ --mount type=volume,src=${dbvolume},dst=/var/lib/postgresql/data/ \