2022-11-18 10:02:43 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
ABSDIR="$( dirname "$(realpath -s -- "$0")" )"
|
|
|
|
source ${ABSDIR}/../functions.sh
|
|
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
|
|
|
|
ensure_pwd_is_scriptdir
|
|
|
|
ensure_not_root
|
|
|
|
|
|
|
|
ensure_container_not_exists ${container_name}
|
|
|
|
ensure_variables_are_defined "$envvars"
|
|
|
|
|
|
|
|
if ! podman image exists ${ntfy_image}:${ntfy_version}; then
|
|
|
|
podman image pull ${ntfy_image}:${ntfy_version} || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
podman run --name ${container_name} -p ${listen_if}:${listen_port}:8080 -d ${ntfy_image}:${ntfy_version} serve --listen-http :8080 --base-url ${GARBAYE_NTFY_BASE_URL} &&
|
2022-11-18 10:07:52 +00:00
|
|
|
( podman logs -f ${container_name} 2>&1 & ) | grep -q 'INFO Listening on' &&
|
2022-11-18 10:02:43 +00:00
|
|
|
podman cp config/server.yml ${container_name}:/etc/ntfy/server.yml &&
|
|
|
|
podman stop ${container_name} &&
|
|
|
|
echo Container ${container_name} successfully built and stopped.
|