From ab392b9f86cd36b640058d543f425ddfaed9848a Mon Sep 17 00:00:00 2001 From: John O'Hare Date: Sun, 17 May 2026 09:35:15 +0100 Subject: [PATCH] feat(base): add docker-client to basePackages Adds the docker CLI to the agentbox base image so containerised agents can talk to the host docker daemon via a mounted /var/run/docker.sock. Required for any workflow that orchestrates sibling containers (visionclaw stack, kokoros, whisper, xinference, etc) from inside agentbox without needing nsenter or DinD. Co-Authored-By: jjohare --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 0eb28d4e9..ab477817b 100644 --- a/flake.nix +++ b/flake.nix @@ -396,6 +396,7 @@ inetutils # hostname, telnet, ftp, traceroute — minimal network diagnostics iproute2 # ip, ss — modern network introspection iputils # ping, ping6, tracepath — basic reachability tests + docker-client # docker CLI for talking to host daemon via mounted /var/run/docker.sock gnumake gcc clang