---
title: SSH into running Container instances
description: Connect to running Container instances with SSH through Wrangler.
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/) 

## SSH into running Container instances

Mar 12, 2026 

[ Containers ](https://developers.cloudflare.com/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-2655)
* [  wrangler.toml ](#tab-panel-2656)

JSONC

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

TOML

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

Then connect with:

Terminal window

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

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

Terminal window

```
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://developers.cloudflare.com/containers/ssh/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/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://developers.cloudflare.com/changelog/post/2026-03-12-ssh-support/","inLanguage":"en","image":"https://developers.cloudflare.com/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://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
