> ## Documentation Index
> Fetch the complete documentation index at: https://condor.hummingbot.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Clean Exited Containers

> Remove all exited Docker containers to free up space.

Args:
    docker_service: Docker service dependency
    
Returns:
    Response from cleanup operation



## OpenAPI

````yaml /api-reference/openapi.json post /docker/clean-exited-containers
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /docker/clean-exited-containers:
    post:
      tags:
        - Docker
      summary: Clean Exited Containers
      description: |-
        Remove all exited Docker containers to free up space.

        Args:
            docker_service: Docker service dependency
            
        Returns:
            Response from cleanup operation
      operationId: clean_exited_containers_docker_clean_exited_containers_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````