services-garbaye/podman-peerjs/10_install.sh

13 lines
435 B
Bash
Raw Normal View History

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
ensure_container_not_exists ${container_name}
2021-05-04 20:14:08 +00:00
2022-02-10 20:51:36 +00:00
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.