Skip to content
This repository was archived by the owner on Apr 9, 2026. It is now read-only.

Commit c3f6126

Browse files
committed
update
1 parent 58ce96e commit c3f6126

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

supervisor/addons/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def arch(self) -> str:
5656
def base_image(self) -> str:
5757
"""Return base image for this add-on."""
5858
if not self._data[ATTR_BUILD_FROM]:
59-
return f"ghcr.io/home-assistant/{self.sys_arch.default}-base:latest"
59+
return f"ghcr.io/my-smart-homes/{self.sys_arch.default}-base:latest"
6060

6161
if isinstance(self._data[ATTR_BUILD_FROM], str):
6262
return self._data[ATTR_BUILD_FROM]

supervisor/homeassistant/module.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def latest_version(self) -> AwesomeVersion | None:
176176
@property
177177
def default_image(self) -> str:
178178
"""Return the default image for this system."""
179-
return f"ghcr.io/home-assistant/{self.sys_machine}-homeassistant"
179+
return f"ghcr.io/my-smart-homes/{self.sys_machine}-homeassistant"
180180

181181
@property
182182
def image(self) -> str:

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ async def supervisor_name() -> None:
7979
@pytest.fixture
8080
async def docker() -> DockerAPI:
8181
"""Mock DockerAPI."""
82-
images = [MagicMock(tags=["ghcr.io/home-assistant/amd64-hassio-supervisor:latest"])]
82+
images = [MagicMock(tags=["ghcr.io/my-smart-homes/amd64-hassio-supervisor:latest"])]
8383
image = MagicMock()
8484
image.attrs = {"Os": "linux", "Architecture": "amd64"}
8585

0 commit comments

Comments
 (0)