@runloop/api-client - v1.4.0
    Preparing search index...
    interface ContainerizedService {
        image: string;
        name: string;
        credentials?:
            | RepositoryManifestView.ContainerizedService.Credentials
            | null;
        env?: { [key: string]: string }
        | null;
        options?: string | null;
        port_mappings?: string[] | null;
    }
    Index

    Properties

    image: string

    The image of the container service.

    name: string

    The name of the container service.

    The credentials of the container service.

    env?: { [key: string]: string } | null

    The environment variables of the container service.

    options?: string | null

    Additional Docker container create options.

    port_mappings?: string[] | null

    The port mappings of the container service. Port mappings are in the format of <host_port>:<container_port>.