From 0dd0b7c9d65e791884c001bbafb360d85f402591 Mon Sep 17 00:00:00 2001 From: Gitouche <26656-gitouche@users.noreply.framagit.org> Date: Sat, 5 Mar 2022 00:19:51 +0100 Subject: [PATCH] Matrix : BUILD YOUR OWN IMAGES --- podman-matrix/10_install.sh | 2 +- podman-matrix/vars.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/podman-matrix/10_install.sh b/podman-matrix/10_install.sh index 17a5d4b..2e91c97 100755 --- a/podman-matrix/10_install.sh +++ b/podman-matrix/10_install.sh @@ -20,8 +20,8 @@ if ! podman volume exists ${dbvolume} ; then exit 1 fi +source ${ABSDIR}/zz_build-images.sh && 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/ \ diff --git a/podman-matrix/vars.sh b/podman-matrix/vars.sh index 8e3de52..33d53e0 100644 --- a/podman-matrix/vars.sh +++ b/podman-matrix/vars.sh @@ -3,7 +3,7 @@ pod_name='podman-matrix' service_name="pod-${pod_name}.service" #version='latest' -synapse_image="docker.io/matrixdotorg/synapse" +synapse_image="localhost/matrixdotorg/synapse" synapse_version='v1.53.0' postgres_image="docker.io/library/postgres" postgres_version='11.14'