Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/0e51f668b660c6acd535d11f3b4b6aa9aeb9d762?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
24 additions and
0 deletions
@ -94,6 +94,30 @@ docker run -d \
-v /etc/timezone:/etc/timezone:ro\
--net= host \
homeassistant/home-assistant:stable & >/dev/null
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 \
--restart unless-stopped \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /dev:/dev \
-v hass_config:/config \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro\
--net= host \
homeassistant/home-assistant:stable
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 "
rm /etc/motd