// SPDX-License-Identifier: Apache-2.0
//! A persistent shell session inside a running Docker container.
//!
//! Run:
//! docker run -d --name ek alpine sleep 600
//! EXECKIT_DOCKER=ek cargo run --example docker
//!
//! Needs the `docker` CLI on PATH. Same structured ExecResult, policy, redaction,
//! and bounding as the local and SSH transports.
use Session;