UNPKG

@nx/docker

Version:

The Nx Plugin for Docker to aid in containerizing projects.

16 lines 637 B
import { type CreateNodesV2 } from '@nx/devkit'; export interface DockerTargetOptions { name: string; args?: string[]; env?: Record<string, string>; envFile?: string; cwd?: string; configurations?: Record<string, Omit<DockerTargetOptions, 'configurations' | 'name'>>; } export interface DockerPluginOptions { buildTarget?: string | DockerTargetOptions; runTarget?: string | DockerTargetOptions; } export declare const createNodesV2: CreateNodesV2<DockerPluginOptions>; export declare function getProjectNameFromPath(projectRoot: string, workspaceRoot: string): string; //# sourceMappingURL=plugin.d.ts.map