Packages
A typed Elixir wrapper for the Docker CLI with struct-based commands and pipeline composition
Current section
Files
Jump to
Current section
Files
lib/docker/result.ex
defmodule Docker.Result do
@moduledoc """
The raw result of a successful Docker command execution.
"""
@type t :: %__MODULE__{
stdout: String.t(),
exit_code: non_neg_integer()
}
defstruct [:stdout, :exit_code]
end