Improve installation peerjs

This commit is contained in:
Gitouche 2022-02-12 19:28:59 +01:00
parent 328f1503fe
commit 68fba6dd10
1 changed files with 4 additions and 1 deletions

View File

@ -9,4 +9,7 @@ ensure_not_root
ensure_container_not_exists ${container_name}
podman run --name ${container_name} --user nobody -p ${listen_if}:${listen_port}:9000 -d ${upstream_images}:${version} && podman stop ${container_name} && echo Container ${container_name} successfully built and stopped.
podman run --name ${container_name} --user nobody -p ${listen_if}:${listen_port}:9000 -d ${upstream_images}:${version} &&
( podman logs -f peerjs-server 2>&1 & ) | grep -q 'Started PeerServer' &&
podman stop ${container_name} &&
echo Container ${container_name} successfully built and stopped.