2021-08-20 01:33:52 +02:00
|
|
|
## Home Assistant Container Update ##
|
|
|
|
|
2021-08-20 01:31:50 +02:00
|
|
|
In the homeassistant lxc console run `nano upha.sh`
|
2021-08-20 22:26:30 +02:00
|
|
|
it will open a new file, copy and paste the Stable Branch (change TZ)
|
2021-08-20 01:31:50 +02:00
|
|
|
Save and exit the text editor with "Ctrl+O", "Enter" and "Ctrl+X"
|
2021-08-20 22:26:30 +02:00
|
|
|
To update HA, run `bash upha.sh` from the console
|
2021-08-20 01:31:50 +02:00
|
|
|
|
|
|
|
Stable Branch
|
|
|
|
```
|
|
|
|
### upha.sh ###
|
|
|
|
#!/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 --restart unless-stopped -v hass_config:/config -e TZ=US/Eastern --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"
|
|
|
|
```
|
|
|
|
|
|
|
|
Beta Branch
|
|
|
|
```
|
|
|
|
### uphabeta.sh ###
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo -e "\e[1;33m Pulling New Beta Version... \e[0m"
|
|
|
|
docker pull homeassistant/home-assistant:beta
|
|
|
|
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 --restart unless-stopped -v hass_config:/config -e TZ=US/Eastern --net=host homeassistant/home-assistant:beta
|
|
|
|
echo -e "\e[1;33m Removing Old Image... \e[0m"
|
|
|
|
docker image prune -f
|
|
|
|
echo -e "\e[1;33m Finished Update! \e[0m"
|
|
|
|
```
|
|
|
|
|
|
|
|
Development Branch
|
|
|
|
```
|
|
|
|
### uphadev.sh ###
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo -e "\e[1;33m Pulling New Dev Version... \e[0m"
|
|
|
|
docker pull homeassistant/home-assistant:dev
|
|
|
|
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 --restart unless-stopped -v hass_config:/config -e TZ=US/Eastern --net=host homeassistant/home-assistant:dev
|
|
|
|
echo -e "\e[1;33m Removing Old Image... \e[0m"
|
|
|
|
docker image prune -f
|
|
|
|
echo -e "\e[1;33m Finished Update! \e[0m"
|
|
|
|
```
|