Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ContainerImage

import type { ContainerImage } from "https://googleapis.deno.dev/v1/notebooks:v2.ts";

Definition of a container image for starting a notebook instance with the environment installed in a container.

interface ContainerImage {
repository?: string;
tag?: string;
}

§Properties

§
repository?: string
[src]

Required. The path to the container image repository. For example: gcr.io/{project_id}/{image_name}

§
tag?: string
[src]

Optional. The tag of the container image. If not specified, this defaults to the latest tag.