---
title: Wrangler supports SSH ProxyCommand for Containers
description: Use OpenSSH ProxyCommand with wrangler containers ssh.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further.

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Wrangler supports SSH ProxyCommand for Containers

May 28, 2026 

[ Containers ](https://developers.cloudflare.com/containers/) 

[Wrangler](https://developers.cloudflare.com/workers/wrangler/) supports using `wrangler containers ssh` as an OpenSSH `ProxyCommand` for [Containers](https://developers.cloudflare.com/containers/). This lets your local SSH client connect to a running Container through Wrangler.

Terminal window

```

ssh -o ProxyCommand="wrangler containers ssh %h" cloudchamber@<INSTANCE_ID>


```

When standard input and output are piped, Wrangler forwards data to the SSH server in the Container. You can also pass `--stdio` to force this mode.

For more information, refer to the [SSH documentation](https://developers.cloudflare.com/containers/ssh/).