2016-11-25 00:07:20 +01:00
|
|
|
import { GitRepo } from 'smartstring';
|
2017-05-19 12:09:33 +02:00
|
|
|
import { Dockerfile } from './mod_docker/index';
|
2017-07-27 13:15:39 +02:00
|
|
|
/**
|
|
|
|
* a info instance about the git respoitory at cwd :)
|
|
|
|
*/
|
2016-06-03 02:56:20 +02:00
|
|
|
export declare let repo: GitRepo;
|
2017-07-27 13:15:39 +02:00
|
|
|
/**
|
|
|
|
* the build stage
|
|
|
|
*/
|
2016-06-05 22:51:59 +02:00
|
|
|
export declare let buildStage: string;
|
2016-07-18 16:56:53 +02:00
|
|
|
export declare let dockerRegistry: string;
|
2016-07-18 18:39:04 +02:00
|
|
|
export declare let setDockerRegistry: (dockerRegistryArg: string) => void;
|
2016-06-05 05:16:14 +02:00
|
|
|
export declare let dockerFilesBuilt: Dockerfile[];
|
2016-06-05 04:48:39 +02:00
|
|
|
export declare let dockerFiles: Dockerfile[];
|
2017-07-27 13:15:39 +02:00
|
|
|
/**
|
|
|
|
* the config
|
|
|
|
*/
|
2016-06-26 04:40:58 +02:00
|
|
|
export declare let config: {
|
|
|
|
dockerRegistry: any;
|
2017-05-19 12:09:33 +02:00
|
|
|
dockerFilesBuilt: Dockerfile[];
|
|
|
|
dockerFiles: Dockerfile[];
|
2016-06-26 04:40:58 +02:00
|
|
|
project: any;
|
|
|
|
};
|
2017-07-27 13:15:39 +02:00
|
|
|
/**
|
|
|
|
* the configuration store
|
|
|
|
*/
|
2017-05-19 12:09:33 +02:00
|
|
|
export declare let configStore: () => Promise<void>;
|