diff --git a/podman-matrix/10_install.sh b/podman-matrix/10_install.sh index 5e0c2d8..e7eacc9 100755 --- a/podman-matrix/10_install.sh +++ b/podman-matrix/10_install.sh @@ -35,9 +35,6 @@ podman container run -d --name ${db_container_name} --pod ${pod_name} --requires -e POSTGRES_DB=${container_name} \ -e POSTGRES_INITDB_ARGS="--encoding=UTF8 --locale=C" \ ${postgres_image}:${postgres_version} && -echo -n "Waiting for PostgreSQL to be ready... " && -( podman container logs -f ${db_container_name} 2>&1 & ) | grep -q 'database system is ready to accept connections' && -echo "OK." && podman container run -d --name ${container_name} --pod ${pod_name} --requires=${project_name}_infra --net ${project_name}_default \ --mount type=volume,src=${confvolume},dst=/data --publish ${listen_if}:${listen_port}:8008 ${synapse_image}:${synapse_version} && echo -n "Waiting for background tasks to end... " &&