Skip to content

catalogue: io.pilot.docker v29.6.1 (Docker — Engine + CLI, Linux)#343

Open
Alexgodoroja wants to merge 1 commit into
mainfrom
catalogue/io.pilot.docker-29.6.1
Open

catalogue: io.pilot.docker v29.6.1 (Docker — Engine + CLI, Linux)#343
Alexgodoroja wants to merge 1 commit into
mainfrom
catalogue/io.pilot.docker-29.6.1

Conversation

@Alexgodoroja

Copy link
Copy Markdown
Collaborator

Catalogue entry: io.pilot.docker v29.6.1 (Docker)

Adds Docker 29.6.1 (Docker Engine + CLI) to the app-store catalogue. App-template submission merged in pilot-protocol/app-template#56. Re-signed catalogue index; Linux-only signed adapter bundles on prod R2; the Docker engine binaries delivered per-arch from the registry, sha-pinned on install.

Linux-only (linux/amd64 + linux/arm64): dockerd needs Linux kernel features, so there are no darwin bundles by design (macOS Docker Desktop runs the engine in a hidden Linux VM).

Short description

Docker 29.6.1 as a native CLI for agents (Linux): delivers the Docker Engine (dockerd + containerd + runc) and the docker CLI, sha-pinned. Start a local engine (docker.engine_start), then pull images and run containers — run/ps/images/pull/logs, plus build, exec, networks, volumes, and any docker command via a verbatim-argv passthrough. Real containers on a real Linux host, no Docker Desktop.

Verified

  • Real containers on Linux both ways: in a privileged Linux container the adapter (staging the engine from R2) ran, then via IPC engine_startdocker.pull hello-worlddocker.run hello-world → "Hello from Docker!"run alpine echo → ps/images. Vanilla dockerctl run --rm hello-world prints the same.
  • pilot-app verify-submission green; A/B vanilla-vs-adapter 3/3 exit-match in CI.
  • Bundles sha-verified at the prod R2 URLs; publisher pin ed25519:pzka4ROs… matches the signed manifest.

Long description (store page)

Docker (Engine + CLI) — native CLI for agents (Linux)

This app installs the official Docker 29.6.1 static distribution on a Linux host and fronts it as typed
methods. The bundle carries the full Docker Enginedockerd, containerd, runc, containerd-shim-runc-v2,
docker-proxy, docker-init, ctr — plus the docker CLI, each sha-pinned and staged at install. A small
dockerctl wrapper manages the engine lifecycle and fronts the CLI.

Linux only

Docker containers require Linux kernel features (namespaces, cgroups, overlayfs) — there is no native macOS
dockerd
(Docker Desktop runs the engine inside a hidden Linux VM). This app therefore targets Linux (amd64 +
arm64)
. docker.engine_start runs a real daemon and requires root (the pilot host must run as root, e.g. in a
container or VM). To use Docker against an existing daemon instead, set DOCKER_HOST and skip engine_start.

The usual flow

  1. Start the engine: docker.engine_start {} — boots dockerd on a private socket under DOCKER_DIR
    (default /tmp/pilot-docker), waits until the API is ready.
  2. Pull + run: docker.pull { "image": "hello-world" }, then docker.run { "image": "hello-world" }.
  3. Inspect: docker.ps, docker.images, docker.logs, docker.info.
  4. Anything else: docker.exec { "args": ["run","-d","-p","8080:80","nginx"] } — any docker command with any flags.
  5. Stop: docker.engine_stop.

Methods

  • docker.engine_start / docker.engine_stop — local Docker Engine lifecycle (root).
  • docker.version, docker.info — client/server versions and system info.
  • docker.ps, docker.images, docker.logs — inspect containers/images/logs.
  • docker.pull / docker.run — pull an image / run a container (--rm).
  • docker.exec — the docker CLI with a verbatim argv (+ optional stdin): run with any flags, build, exec,
    networks, volumes, compose plugins, etc.
  • docker.cli_help — the full docker --help. docker.help — the self-describing method list.

Configuration

  • DOCKER_DIR (env) — where dockerd keeps its socket, data-root, exec-root, pidfile, and log
    (default /tmp/pilot-docker).
  • DOCKER_HOST (env) — point the CLI at an existing/remote daemon instead of the bundled one
    (tcp://host:2375 or unix:///path); when set, skip docker.engine_start.
  • Rootdockerd needs root and kernel container support. Works on a Linux host/VM/privileged container where
    the pilot daemon runs as root; not on a restricted, capability-stripped sandbox.
  • Storage driver — defaults to overlay2; pass an alternative via docker.exec
    ({"args":["engine-start","--storage-driver","vfs"]}) on filesystems where overlay2 is unavailable.

Good to know

  • Free and open source (Apache-2.0). Binaries are the official Docker static release, repackaged unmodified.
  • Output returns verbatim; on a non-zero exit the reply is {stdout, stderr, exit}.

docker --help

Docker CLI — commands and options
=================================

Docker runs applications in containers. This app delivers the Docker Engine
(dockerd + containerd + runc) and the docker CLI. Start a local engine with
'engine-start', then use any docker command.

Usage:  docker [OPTIONS] COMMAND

A self-sufficient runtime for containers

Common Commands:
  run         Create and run a new container from an image
  exec        Execute a command in a running container
  ps          List containers
  build       Build an image from a Dockerfile
  pull        Download an image from a registry
  push        Upload an image to a registry
  images      List images
  login       Authenticate to a registry
  logout      Log out from a registry
  search      Search Docker Hub for images
  version     Show the Docker version information
  info        Display system-wide information

Management Commands:
  builder     Manage builds
  compose*    Docker Compose
  container   Manage containers
  context     Manage contexts
  image       Manage images
  manifest    Manage Docker image manifests and manifest lists
  network     Manage networks
  plugin      Manage plugins
  system      Manage Docker
  volume      Manage volumes

Swarm Commands:
  swarm       Manage Swarm

Commands:
  attach      Attach local standard input, output, and error streams to a running container
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes to files or directories on a container's filesystem
  events      Get real time events from the server
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  import      Import the contents from a tarball to create a filesystem image
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  logs        Fetch the logs of a container
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  rmi         Remove one or more images
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  wait        Block until one or more containers stop, then print their exit codes

Global Options:
      --config string      Location of client config files (default
                           "/Users/alexgodo/.docker")
  -c, --context string     Name of the context to use to connect to the
                           daemon (overrides DOCKER_HOST env var and
                           default context set with "docker context use")
  -D, --debug              Enable debug mode
  -H, --host string        Daemon socket to connect to
  -l, --log-level string   Set the logging level ("debug", "info",
                           "warn", "error", "fatal") (default "info")
      --tls                Use TLS; implied by --tlsverify
      --tlscacert string   Trust certs signed only by this CA (default
                           "/Users/alexgodo/.docker/ca.pem")
      --tlscert string     Path to TLS certificate file (default
                           "/Users/alexgodo/.docker/cert.pem")
      --tlskey string      Path to TLS key file (default
                           "/Users/alexgodo/.docker/key.pem")
      --tlsverify          Use TLS and verify the remote
  -v, --version            Print version information and quit

Run 'docker COMMAND --help' for more information on a command.

For more help on how to use Docker, head to https://docs.docker.com/go/guides/

@Alexgodoroja Alexgodoroja requested a review from TeoSlayer as a code owner July 1, 2026 00:53
Add Docker 29.6.1 (Docker Engine + CLI, native app for agents) to the app-store
catalogue: Linux-only (linux/amd64 + linux/arm64) signed adapter bundles on prod
R2, per-app metadata.json store page, publisher ed25519:pzka4ROs…, and a
re-signed catalogue.json. dockerd needs a Linux kernel, so there are no darwin
bundles (by design).

App-template submission: pilot-protocol/app-template#56.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant