Update to Docker v29.1.2, runC v1.3.4, containerd v2.2.0 (#4429)

Update to the latest versions and update tests to use the new schema of the
inspect output.

* buildroot 0aa9729cd5...808ee7b916 (4):
  > package/docker-engine: bump version to v29.1.2
  > package/docker-cli: bump version to v29.1.2
  > package/containerd: bump version to v2.2.0
  > package/runc: bump version to v1.3.4
This commit is contained in:
Jan Čermák 2025-12-04 15:55:15 +01:00 committed by GitHub
parent 0354f47ecf
commit 9e5a74fc87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 0aa9729cd522c3f434a166522eea14ccd0467f1c
Subproject commit 808ee7b91641925b4b7bb4bd400494e172265daf

View File

@ -29,7 +29,7 @@ def test_start_supervisor(shell, shell_json):
sleep(1)
supervisor_ip = "\n".join(
shell.run_check("docker inspect --format='{{.NetworkSettings.IPAddress}}' hassio_supervisor")
shell.run_check("docker inspect --format='{{.NetworkSettings.Networks.bridge.IPAddress}}' hassio_supervisor")
)
while True:
@ -157,7 +157,7 @@ def test_restart_supervisor(shell, shell_json):
assert result.get("result") == "ok", f"Supervisor restart failed: {result}"
supervisor_ip = "\n".join(
shell.run_check("docker inspect --format='{{.NetworkSettings.IPAddress}}' hassio_supervisor")
shell.run_check("docker inspect --format='{{.NetworkSettings.Networks.bridge.IPAddress}}' hassio_supervisor")
)
while True: