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

# List container profiles

> Returns all container profiles. Used by agent form to populate the profile selector.



## OpenAPI

````yaml /ai-app/openapi.yaml get /container-profiles
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /container-profiles:
    get:
      summary: List container profiles
      description: >-
        Returns all container profiles. Used by agent form to populate the
        profile selector.
      responses:
        '200':
          description: Container profile list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContainerProfile'
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
      security:
        - bearerAuth: []
components:
  schemas:
    ContainerProfile:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          description: Unique profile name (e.g. "standard", "gpu")
        description:
          type: string
        docker_image:
          type: string
          description: Docker image used when starting agent containers with this profile
        default_cpus:
          type: string
        default_mem_limit:
          type: string
        default_pids_limit:
          type: integer
        is_platform:
          type: boolean
          description: >-
            Platform profiles are managed by admins and cannot be deleted by
            users.
        metadata:
          type: object
          description: Profile-specific container configuration (extra_env, shm_size)
          properties:
            extra_env:
              type: array
              items:
                type: string
              description: Additional environment variables injected into the container
            shm_size:
              type: string
              description: Shared memory size for the container (e.g. "256m")
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````