diff --git a/podman-matrix/10_install.sh b/podman-matrix/10_install.sh index cc3b815..e7e5170 100755 --- a/podman-matrix/10_install.sh +++ b/podman-matrix/10_install.sh @@ -24,9 +24,9 @@ podman run -d --name ${db_container_name} --pod ${pod_name} \ -e POSTGRES_DB=${container_name} \ -e POSTGRES_INITDB_ARGS="--encoding=UTF8 --locale=C" \ -e PGDATA=/var/lib/postgresql/data/${container_name} ${postgres_image} && \ -podman logs ${db_container_name} &&\ +podman logs -f ${db_container_name} &&\ podman run -d --name ${container_name} --pod ${pod_name} \ --mount type=volume,src=${confvolume},dst=/data ${synapse_image} && \ -podman logs ${container_name} &&\ +podman logs -f ${container_name} &&\ echo Pod built and starting