From b03bb8c1fc5f49874f4c76cf0cf2a18fe0952750 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 5 Jul 2023 18:35:38 -0400 Subject: [PATCH 1/2] Update fhem.sh default Debian 12 --- ct/fhem.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/fhem.sh b/ct/fhem.sh index 075d4b45..7f9c8ecf 100644 --- a/ct/fhem.sh +++ b/ct/fhem.sh @@ -23,7 +23,7 @@ var_disk="8" var_cpu="2" var_ram="2048" var_os="debian" -var_version="11" +var_version="12" variables color catch_errors From e2257ed9d7e6046e76e4a64c83fd3059588a8399 Mon Sep 17 00:00:00 2001 From: Michel R Date: Thu, 6 Jul 2023 01:35:43 +0200 Subject: [PATCH 2/2] Change homeassistant container url (#1594) As of https://www.home-assistant.io/blog/2023/07/05/release-20237/#breaking-changes the image from ghcr.io should be used --- install/homeassistant-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/homeassistant-install.sh b/install/homeassistant-install.sh index 715f8a4f..0c19ca6c 100644 --- a/install/homeassistant-install.sh +++ b/install/homeassistant-install.sh @@ -72,7 +72,7 @@ $STD docker run -d \ msg_ok "Installed Portainer $PORTAINER_LATEST_VERSION" msg_info "Pulling Home Assistant $CORE_LATEST_VERSION Image" -$STD docker pull homeassistant/home-assistant:stable +$STD docker pull ghcr.io/home-assistant/home-assistant:stable msg_ok "Pulled Home Assistant $CORE_LATEST_VERSION Image" msg_info "Installing Home Assistant $CORE_LATEST_VERSION" @@ -86,7 +86,7 @@ $STD docker run -d \ -v hass_config:/config \ -v /etc/localtime:/etc/localtime:ro \ --net=host \ - homeassistant/home-assistant:stable + ghcr.io/home-assistant/home-assistant:stable mkdir /root/hass_config msg_ok "Installed Home Assistant $CORE_LATEST_VERSION"