Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/20aa1b7761074b50c2941adcbf458155ffc5a4d7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
16 additions and
1 deletions
@ -56,8 +56,23 @@ apt-get -qqy install \
echo -e " ${ CHECKMARK } \e[1;92m Installing Podman... \e[0m "
apt-get -y install podman & >/dev/null
echo -e " ${ CHECKMARK } \e[1;92m Pulling Yacht Image...\e[0m "
podman pull ghcr.io/selfhostedpro/yacht:latest & >/dev/null
echo -e " ${ CHECKMARK } \e[1;92m Installing Yacht... \e[0m "
podman volume create yacht >/dev/null
podman run -d \
--name yacht \
-v /var/run/podman/podman.sock:/var/run/docker.sock \
-v yacht:/config \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-p 8000:8000 \
--net= host \
selfhostedpro/yacht:latest
echo -e " ${ CHECKMARK } \e[1;92m Pulling Home Assistant Image...\e[0m "
podman pull docker.io/homeassistant/home-assistant:stable & >/dev/null
podman pull ghc r.io/homeassistant/home-assistant:stable & >/dev/null
echo -e " ${ CHECKMARK } \e[1;92m Installing Home Assistant... \e[0m "
podman volume create hass_config >/dev/null