---
title: SSH into running Container instances
description: Connect to running Container instances with SSH through Wrangler.
image: https://edgetunnel-b2h.pages.dev/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/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://edgetunnel-b2h.pages.dev/changelog/rss/index.xml) [ View RSS feeds ](https://edgetunnel-b2h.pages.dev/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://edgetunnel-b2h.pages.dev/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://edgetunnel-b2h.pages.dev/changelog/) 

## SSH into running Container instances

Mar 12, 2026 

[ Containers ](https://edgetunnel-b2h.pages.dev/containers/) 

You can now SSH into running Container instances using Wrangler. This is useful for debugging, inspecting running processes, or executing one-off commands inside a Container.

To connect, enable `wrangler_ssh` in your Container configuration and add your `ssh-ed25519` public key to `authorized_keys`:

* [  wrangler.jsonc ](#tab-panel-2817)
* [  wrangler.toml ](#tab-panel-2818)

**JSONC**

```jsonc
{
  "containers": [
    {
      "wrangler_ssh": {
        "enabled": true
      },
      "authorized_keys": [
        {
          "name": "<NAME>",
          "public_key": "<YOUR_PUBLIC_KEY_HERE>"
        }
      ]
    }
  ]
}
```

**TOML**

```toml
[[containers]]
[containers.wrangler_ssh]
enabled = true


[[containers.authorized_keys]]
name = "<NAME>"
public_key = "<YOUR_PUBLIC_KEY_HERE>"
```

Then connect with:

```sh
wrangler containers ssh <INSTANCE_ID>
```

You can also run a single command without opening an interactive shell:

```sh
wrangler containers ssh <INSTANCE_ID> -- ls -al
```

Use `wrangler containers instances <APPLICATION>` to find the instance ID for a running Container.

For more information, refer to the [SSH documentation](https://edgetunnel-b2h.pages.dev/containers/ssh/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-03-12-ssh-support/#page","headline":"SSH into running Container instances · Changelog","description":"Connect to running Container instances with SSH through Wrangler.","url":"https://edgetunnel-b2h.pages.dev/changelog/post/2026-03-12-ssh-support/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/changelog-preview.png","dateModified":"2026-03-12","datePublished":"2026-03-12","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
```
