---
title: "Remove Container"
method: POST
path: "/docker/remove-container/{container_name}"
tags: ["Docker"]
---

# Remove Container

`POST /docker/remove-container/{container_name}`

Remove a Hummingbot container and optionally archive its bot data.

NOTE: This endpoint only works with Hummingbot containers (names starting with 'hummingbot-')
as it archives bot-specific data from the bots/instances directory.

Args:
    container_name: Name of the Hummingbot container to remove
    archive_locally: Whether to archive data locally (default: True)
    s3_bucket: S3 bucket name for cloud archiving (optional)
    docker_service: Docker service dependency
    bot_archiver: Bot archiver service dependency
    
Returns:
    Response from container removal operation
    
Raises:
    HTTPException: 400 if container is not a Hummingbot container
    HTTPException: 500 if archiving fails

## Path parameters

- `container_name` string, required

## Query parameters

- `archive_locally` boolean
- `s3_bucket` string

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/hummingbot/apis/hummingbot-api.md) · [All operations](https://skmtc.net/hummingbot/apis/hummingbot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hummingbot/hummingbot-api/revisions/5347fe79537f/schema)
