From 19a6a06f5f9f74cd1f59454a7e4e47e7f5999d29 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 1 Nov 2023 19:16:54 -0400 Subject: [PATCH] Update podman-homeassistant.sh https://github.com/tteck/Proxmox/issues/1994 --- ct/podman-homeassistant.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/podman-homeassistant.sh b/ct/podman-homeassistant.sh index 14c2ed98..aa473549 100644 --- a/ct/podman-homeassistant.sh +++ b/ct/podman-homeassistant.sh @@ -74,7 +74,7 @@ if [ "$UPD" == "1" ]; then for container in ${CONTAINER_LIST}; do CONTAINER_IMAGE="$(podman inspect --format "{{.Config.Image}}" --type container ${container})" RUNNING_IMAGE="$(podman inspect --format "{{.Image}}" --type container "${container}")" - podman pull "docker.io/${CONTAINER_IMAGE}" + podman pull "${CONTAINER_IMAGE}" LATEST_IMAGE="$(podman inspect --format "{{.Id}}" --type image "${CONTAINER_IMAGE}")" if [[ "${RUNNING_IMAGE}" != "${LATEST_IMAGE}" ]]; then echo "Updating ${container} image ${CONTAINER_IMAGE}"