mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-06-26 03:46:29 +00:00

* Support armv7 and first abstraction * Change layout * Add more type hints * Fix imports * Update * move forward * add tests * fix type * fix lint & tests * fix tests * Fix unittests * Fix create folder * cleanup * Fix import order * cleanup loop parameter * cleanup init function * Allow changeable image name * fix setup * Fix load of arch * Fix lint * Add typing * fix init * fix hassos cli problem & stick on supervisor arch * address comments * cleanup * Fix image selfheal * Add comment * update uvloop * remove uvloop * fix tagging * Fix install name * Fix validate build config * Abstract image_name from system cache
38 lines
990 B
Python
38 lines
990 B
Python
"""HassOS Cli docker object."""
|
|
import logging
|
|
|
|
import docker
|
|
|
|
from ..coresys import CoreSysAttributes
|
|
from .interface import DockerInterface
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class DockerHassOSCli(DockerInterface, CoreSysAttributes):
|
|
"""Docker Hass.io wrapper for HassOS Cli."""
|
|
|
|
@property
|
|
def image(self):
|
|
"""Return name of HassOS CLI image."""
|
|
return f"homeassistant/{self.sys_arch.supervisor}-hassio-cli"
|
|
|
|
def _stop(self):
|
|
"""Don't need stop."""
|
|
return True
|
|
|
|
def _attach(self):
|
|
"""Attach to running Docker container.
|
|
Need run inside executor.
|
|
"""
|
|
try:
|
|
image = self.sys_docker.images.get(self.image)
|
|
|
|
except docker.errors.DockerException:
|
|
_LOGGER.warning("Can't find a HassOS CLI %s", self.image)
|
|
|
|
else:
|
|
self._meta = image.attrs
|
|
_LOGGER.info("Found HassOS CLI %s with version %s", self.image,
|
|
self.version)
|