Documentation Index
Fetch the complete documentation index at: https://docs.clawker.dev/llms.txt
Use this file to discover all available pages before exploring further.
clawker container inspect
Display detailed information on one or more containers
Synopsis
Returns low-level information about clawker containers.
By default, outputs JSON. Use —format to extract specific fields.
When —agent is provided, the container name is resolved as clawker.<project>.<agent>
using the project from your .clawker.yaml configuration.
Container names can be:
- Full name: clawker.myproject.myagent
- Container ID: abc123…
clawker container inspect [OPTIONS] CONTAINER [CONTAINER...] [flags]
Examples
# Inspect a container using agent name
clawker container inspect --agent dev
# Inspect a container by full name
clawker container inspect clawker.myapp.dev
# Inspect multiple containers
clawker container inspect clawker.myapp.dev clawker.myapp.writer
# Get specific field using Go template
clawker container inspect --format '{{.State.Status}}' --agent dev
# Get container IP address
clawker container inspect --format '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' --agent dev
Options
--agent Use agent name (resolves to clawker.<project>.<agent>)
-f, --format string Format output using a Go template
-h, --help help for inspect
-s, --size Display total file sizes
Options inherited from parent commands
-D, --debug Enable debug logging
See also