> ## 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.

# Pull Image

> Initiate Docker image pull as background task.
Returns immediately with task status for monitoring.

Args:
    image: DockerImage object containing the image name to pull
    docker_service: Docker service dependency
    
Returns:
    Status of the pull operation initiation



## OpenAPI

````yaml /api-reference/openapi.json post /docker/pull-image
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/pull-image:
    post:
      tags:
        - Docker
      summary: Pull Image
      description: |-
        Initiate Docker image pull as background task.
        Returns immediately with task status for monitoring.

        Args:
            image: DockerImage object containing the image name to pull
            docker_service: Docker service dependency
            
        Returns:
            Status of the pull operation initiation
      operationId: pull_image_docker_pull_image_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DockerImage'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    DockerImage:
      properties:
        image_name:
          type: string
          title: Image Name
          description: >-
            Docker image name with optional tag (e.g.,
            'hummingbot/hummingbot:latest')
      type: object
      required:
        - image_name
      title: DockerImage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````