2021-05-04 20:14:08 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2022-02-10 21:01:32 +00:00
|
|
|
ABSDIR="$( dirname "$(realpath -s -- "$0")" )"
|
2021-05-04 20:14:08 +00:00
|
|
|
source ${ABSDIR}/../functions.sh
|
|
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
|
|
|
|
ensure_pwd_is_scriptdir
|
|
|
|
ensure_not_root
|
|
|
|
|
2021-05-18 20:54:58 +00:00
|
|
|
ensure_container_not_exists ${container_name}
|
2021-05-04 20:14:08 +00:00
|
|
|
|
2022-03-05 09:26:09 +00:00
|
|
|
source ${ABSDIR}/zz_build-images.sh
|
|
|
|
|
2022-02-12 18:28:59 +00:00
|
|
|
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.
|