Compare commits

...

3 Commits

Author SHA1 Message Date
Mike Degatano
c91ffc90ea Fix core check failure 2026-01-12 19:49:09 +00:00
dependabot[bot]
1def9cc60e Bump types-docker from 7.1.0.20251202 to 7.1.0.20260109 (#6466)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-12 17:59:11 +01:00
dependabot[bot]
1f9cbb63ac Bump urllib3 from 2.6.2 to 2.6.3 (#6465)
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.6.2 to 2.6.3.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/2.6.2...2.6.3)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-version: 2.6.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-01-08 11:30:13 +01:00
2 changed files with 5 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ pytest-timeout==2.4.0
pytest==9.0.2
ruff==0.14.10
time-machine==3.2.0
types-docker==7.1.0.20251202
types-docker==7.1.0.20260109
types-pyyaml==6.0.12.20250915
types-requests==2.32.4.20250913
urllib3==2.6.2
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},
)