Compare commits

..

1 Commits

Author SHA1 Message Date
Mike Degatano
c91ffc90ea Fix core check failure 2026-01-12 19:49:09 +00:00
3 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
aiodns==4.0.0
aiodns==3.6.1
aiodocker==0.24.0
aiohttp==3.13.3
atomicwrites-homeassistant==1.4.1
@@ -25,7 +25,7 @@ pyudev==0.24.4
PyYAML==6.0.3
requests==2.32.5
securetar==2025.12.0
sentry-sdk==2.49.0
sentry-sdk==2.48.0
setuptools==80.9.0
voluptuous==0.16.0
dbus-fast==3.1.2

View File

@@ -8,9 +8,9 @@ pytest-asyncio==1.3.0
pytest-cov==7.0.0
pytest-timeout==2.4.0
pytest==9.0.2
ruff==0.14.11
ruff==0.14.10
time-machine==3.2.0
types-docker==7.1.0.20260109
types-pyyaml==6.0.12.20250915
types-requests==2.32.4.20260107
types-requests==2.32.4.20250913
urllib3==2.6.3

View File

@@ -226,19 +226,19 @@ class DockerHomeAssistant(DockerInterface):
source=self.sys_config.path_extern_homeassistant.as_posix(),
target="/config",
read_only=False,
),
).to_dict(),
DockerMount(
type=MountType.BIND,
source=self.sys_config.path_extern_ssl.as_posix(),
target="/ssl",
read_only=True,
),
).to_dict(),
DockerMount(
type=MountType.BIND,
source=self.sys_config.path_extern_share.as_posix(),
target="/share",
read_only=False,
),
).to_dict(),
],
environment={ENV_TIME: self.sys_timezone},
)