28 lines
1.1 KiB
Bash
Executable file
28 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
|
source ${ABSDIR}/../functions.sh
|
|
source ${ABSDIR}/vars.sh
|
|
|
|
ensure_pwd_is_scriptdir
|
|
ensure_not_root
|
|
|
|
if ! podman volume exists ${srvdata_volume} ; then
|
|
echo "Error : data volume ${srvdata_volume} does not exists. Consider running 05_freshinstall.sh if this is the first install."
|
|
exit 1
|
|
fi
|
|
|
|
if ! podman image exists "${privatebin_image}":"${privatebin_version}"; then
|
|
podman image pull "${privatebin_image}":"${privatebin_version}" || exit 1
|
|
fi
|
|
podman container run -d --read-only --name ${container_name} \
|
|
-p ${listen_if}:${listen_port}:8080 \
|
|
--mount=type=tmpfs,destination=/run,U=true \
|
|
--mount=type=tmpfs,destination=/tmp \
|
|
--mount=type=tmpfs,destination=/var/lib/nginx/tmp,U=true \
|
|
-v ${srvdata_volume}:/srv/data:UZ \
|
|
"${privatebin_image}":"${privatebin_version}" &&
|
|
( podman container logs -f ${container_name} 2>&1 & ) | grep -q 'NOTICE: ready to handle connections' &&
|
|
podman container stop ${container_name} &&
|
|
echo Container ${container_name} successfully built and stopped.
|