# ImageFromImage


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "additionalProperties": false,
  "description": "ImageFromImage registers a target for pushed OCI content.",
  "properties": {
    "captureMode": {
      "description": "capture_mode must be unspecified or disk; pushed OCI content cannot include memory.",
      "enum": [
        "unspecified",
        "disk"
      ],
      "not": {
        "enum": [
          "all"
        ]
      },
      "title": "ImageFromImageCaptureMode",
      "type": "string"
    },
    "kitStartup": {
      "$ref": "#/components/schemas/KitStartup",
      "description": "Startup commands copied from the source sandbox. Services with startup replay run these commands when a sandbox created from the image boots. Services without startup replay accept valid commands without running them."
    },
    "platform": {
      "$ref": "#/components/schemas/Platform",
      "description": "platform is the platform for the pushed content."
    },
    "platformHint": {
      "$ref": "#/components/schemas/Platform",
      "description": "platform_hint picks among a multi-platform push when platform is absent.\nA hint the backend cannot honor is ignored, never an error."
    },
    "resources": {
      "$ref": "#/components/schemas/Resources",
      "description": "resources describes preferred runtime resources for the resulting image."
    }
  },
  "title": "ImageFromImage",
  "type": "object"
}
```



