Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/d36ecb90e03c6a2f1a2d0af4d5905886ffd1a564?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
1 deletions
@ -92,11 +92,17 @@ docker run -d \
-v /etc/timezone:/etc/timezone:ro\
--net= host \
homeassistant/home-assistant:stable & >/dev/null
echo -e " ${ CHECKMARK } \e[1;92m Creating Update Script... \e[0m "
file_path = "/root/update.sh"
echo " #!/bin/bash
echo -e '\e[1;33m Pulling New Stable Version... \e[0m'
docker pull homeassistant/home-assistant:stable
echo -e '\e[1;33m Stopping Home Assistant... \e[0m'
docker stop homeassistant
echo -e '\e[1;33m Removing Home Assistant... \e[0m'
docker rm homeassistant
echo -e '\e[1;33m Starting Home Assistant... \e[0m'
docker run -d \
--name homeassistant \
--privileged \
@ -108,7 +114,9 @@ docker run -d \
-v /etc/timezone:/etc/timezone:ro\
--net= host \
homeassistant/home-assistant:stable
docker image prune -f" > $file_path
echo -e '\e[1;33m Removing Old Image... \e[0m'
docker image prune -f
echo -e '\e[1;33m Finished Update! \e[0m' " > $file_path
sudo chmod +x /root/update.sh
echo -e " ${ CHECKMARK } \e[1;92m Customizing LXC... \e[0m "