AutoBE
    Preparing search index...

    Starts a local Docker Postgres container for the runtime workspace.

    interface IDockerPostgres {
        apiPort?: number;
        containerName?: string;
        database?: string;
        host?: string;
        image?: string;
        password?: string;
        port?: number;
        schema?: string;
        startupTimeoutMs?: number;
        type: "docker";
        username?: string;
    }
    Index

    Properties

    apiPort?: number
    containerName?: string
    database?: string
    host?: string
    image?: string
    password?: string
    port?: number
    schema?: string
    startupTimeoutMs?: number
    type: "docker"
    username?: string