List Container instances with wrangler containers instances
Key Points
- New wrangler command to list container instances
- Shows id, name, state, location, version, creation time
- Supports --json for CI and machine-readable output
Summary
Cloudflare Wrangler adds a new command to list all instances for a given Container application: wrangler containers instances <APPLICATION_ID>. The output mirrors the dashboard instances view and includes each instance's ID, name, state, location, version, and creation time.
Key Points
- Command:
wrangler containers instances <APPLICATION_ID> - Output fields: id, name, state, location, version, created_at (creation time)
- Use
--jsonfor machine-readable output; this is the default in non-interactive/CI environments - Suitable for scripting, monitoring, and CI pipelines (parse with jq or similar tools)
- Refer to the containers instances command reference for the full list of options