This repository was archived by the owner on Apr 9, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ]
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ async def supervisor_name() -> None:
7979@pytest .fixture
8080async 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
You can’t perform that action at this time.
0 commit comments