1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2026-02-15 07:27:13 +00:00

Fix core check failure

This commit is contained in:
Mike Degatano
2026-01-12 19:49:09 +00:00
parent 1def9cc60e
commit c91ffc90ea

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},
)