Merge pull request #6071 from andrewthauer/techdocs-custom-docker

feat(techdocs-common): add custom docker image support
This commit is contained in:
Eric Peterson
2021-07-15 10:39:14 +02:00
committed by GitHub
12 changed files with 303 additions and 32 deletions
+24
View File
@@ -29,7 +29,31 @@ export interface Config {
/**
* Techdocs generator information
*/
generator?: {
/**
* Where to run the techdocs (mkdocs) generator
*/
runIn: 'local' | 'docker';
/**
* Override the default techdocs docker image
*/
dockerImage?: string;
/**
* Pull the latest docker image
*/
pullImage?: boolean;
};
/**
* Techdocs generator information
* @deprecated Replaced with techdocs.generator
*/
generators?: {
/**
* @deprecated Use techdocs.generator.runIn
*/
techdocs: 'local' | 'docker';
};