ngx-deploy-docker
Version:
Publish your angular projects to a docker registry by just run `ng deploy your-app`
37 lines (36 loc) • 1.34 kB
JSON
{
"$id": "Schema",
"title": "schema",
"description": "Deployment of Angular CLI applications to the file system",
"properties": {
"baseHref": {
"type": "string",
"description": "This is an example how to override the workspace set of options. --- Base url for the application being built. Same as `ng build --base-href=/XXX/`."
},
"buildTarget": {
"type": "string",
"description": "A named build target, as specified in the `configurations` section of angular.json. Each named target is accompanied by a configuration of option defaults for that target. Same as `ng run <project>:<buildTarget>."
},
"noBuild": {
"type": "boolean",
"default": false,
"description": "Skip build process during deployment."
},
"imageName": {
"type": "string",
"description": "The Name of the Docker Image you want to deploy. If not present, the project name will be taken."
},
"account": {
"type": "string",
"default": "",
"description": "The Account you want to publish the image too. Default is your docker username.",
"alias": "a"
},
"tag": {
"type": "string",
"description": "The Tag you want to publish the image with.",
"default": "latest",
"alias": "t"
}
}
}