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-11-13 13:11:21 +00:00
|
|
|
if ! podman image exists ${upstream_images}:${version}; then
|
2022-11-13 13:09:30 +00:00
|
|
|
podman image pull ${upstream_images}:${version} || exit 1
|
|
|
|
fi
|
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} &&
|
2022-09-03 13:32:11 +00:00
|
|
|
( podman logs -f ${container_name} 2>&1 & ) | grep -q 'Started PeerServer' &&
|
2022-02-12 18:28:59 +00:00
|
|
|
podman stop ${container_name} &&
|
|
|
|
echo Container ${container_name} successfully built and stopped.
|