Skip to content

ImageRef

ImageRef = { image: UnixImage; kind: "live"; } | { kind: "manifest"; manifest: ImageManifest; }

Defined in: packages/runtime/src/container/types.ts:108

How to reference an image at create-time.

  • live — a UnixImage held in memory in the current context.
  • manifest — a serialized ImageManifest for cross-worker transfer (M2 concern, not yet fully supported — ContainerImpl.start throws if kind is manifest).