Improve installation peerjs
This commit is contained in:
parent
328f1503fe
commit
68fba6dd10
|
@ -9,4 +9,7 @@ ensure_not_root
|
||||||
|
|
||||||
ensure_container_not_exists ${container_name}
|
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.
|
||||||
|
|
Loading…
Reference in a new issue