dockerfileLines is now matching the captaindefintion

This commit is contained in:
Kasra Bigdeli
2019-01-08 21:32:18 -08:00
parent 4475b33d6d
commit e8bb3350c2
2 changed files with 2 additions and 2 deletions
@@ -98,7 +98,7 @@ export default class OneClickAppDeploymentHelper {
captainDefinition.imageName = dockerComposeService.image;
} else {
captainDefinition.dockerfileLines =
dockerComposeService.dockerFileLines;
dockerComposeService.dockerfileLines;
}
return self.apiManager.uploadCaptainDefinitionContent(
@@ -15,7 +15,7 @@ export interface IOneClickVariable {
export interface IDockerComposeService {
image?: string;
dockerFileLines?: string[]; // This is our property, not DockerCompose. We use this instead of image if we need to extend the image.
dockerfileLines?: string[]; // This is our property, not DockerCompose. We use this instead of image if we need to extend the image.
volumes?: string[];
ports?: string[];
environment?: IHashMapGeneric<string>;