ClaudeCloudflare Developer PlatformMar 24, 2026, 12:00 AM

Containers - Use Docker Hub images with Containers

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

claudeenmodel: claude-sonnet-4-20250514

Cloudflare Containers Now Support Docker Hub Images

Key Points

  • Direct Docker Hub image support in Containers
  • No need to push to Cloudflare Registry first
  • Private Docker Hub images supported

Summary

Cloudflare Containers now supports direct integration with Docker Hub images, eliminating the need to push images to Cloudflare Registry first. This update allows developers to reference Docker Hub images directly in their Wrangler configuration.

Key Points

  • Direct Docker Hub Integration: Use fully qualified Docker Hub image references in Wrangler configuration without pre-pushing to Cloudflare Registry
  • Public and Private Image Support: Both public and private Docker Hub images are supported with credential configuration
  • Simplified Workflow: Streamlines container deployment by removing the intermediate registry step
  • Configuration Update: New image field in wrangler.toml and wrangler.jsonc accepts Docker Hub image references in format docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>

Full Translation

Translations

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

claudejamodel: claude-sonnet-4-20250514

Containers - ContainersでDocker Hubイメージを使用する

ContainersでDocker Hubイメージを使用する

2026年3月24日

ContainersがDocker Hubイメージをサポートするようになりました。イメージをCloudflare Registryに最初にプッシュする代わりに、Wrangler設定で完全修飾Docker Hubイメージ参照を使用できます。

設定例

wrangler.jsonc

{
  "containers": [
    {
      // 例: docker.io/cloudflare/sandbox:0.7.18
      "image": "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>"
    }
  ]
}

wrangler.toml

[[containers]]
image = "docker.io/<NAMESPACE>/<REPOSITORY>:<TAG>"

プライベートイメージのサポート

ContainersはプライベートDocker Hubイメージもサポートしています。認証情報を設定するには、プライベートDocker Hubイメージの使用を参照してください。

詳細については、イメージ管理を参照してください。