OpenAICloudflare Developer PlatformMar 12, 2026, 12:00 AM

Containers - List Container instances with `wrangler containers instances`

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

openaienmodel: gpt-5-mini-2025-08-07

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 --json for 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

Full Translation

Translations

A translation section that keeps the flow of the original article.

openaijamodel: gpt-5-mini-2025-08-07

Containers - `wrangler containers instances` を使ってコンテナインスタンスを一覧表示

概要

新しい wrangler containers instances コマンドは、指定した Container アプリケーションのすべてのインスタンスを一覧表示します。これは Cloudflare ダッシュボードのインスタンス表示と対応しています。

表示されるフィールド

  • インスタンス ID
  • 名前
  • 状態
  • ロケーション(location)
  • バージョン
  • 作成時刻

使い方

ターミナルで次のコマンドを実行します。

wrangler containers instances <APPLICATION_ID>

機械可読な出力が必要な場合は --json フラグを使用してください。--json は、CI パイプラインなどの非対話環境ではデフォルトのフォーマットでもあります。

詳細なオプションについては、containers instances コマンドリファレンスを参照してください。

公開日: 2026-03-12

Containers - List Container instances with `wrangler containers instances` | Cloudflare Developer Platform | DocsDigest