add portMapping name option
This commit is contained in:
parent
342c920637
commit
2f9cf685d4
1 changed files with 2 additions and 2 deletions
|
|
@ -43,7 +43,7 @@ export class FrontEndCluster extends Construct {
|
|||
taskRole: props.frontendTaskRole,
|
||||
}
|
||||
);
|
||||
|
||||
const frontendServiceName = 'frontend'
|
||||
frontendTaskDefinition.addContainer('frontendContainer', {
|
||||
image: ecs.ContainerImage.fromEcrRepository(props.ecrFrontEndRepository, "latest"),
|
||||
containerName:'langflow-front-container',
|
||||
|
|
@ -58,13 +58,13 @@ export class FrontEndCluster extends Construct {
|
|||
}),
|
||||
portMappings: [
|
||||
{
|
||||
name:frontendServiceName,
|
||||
containerPort: containerPort,
|
||||
protocol: ecs.Protocol.TCP,
|
||||
appProtocol:ecs.AppProtocol.http,
|
||||
},
|
||||
],
|
||||
});
|
||||
const frontendServiceName = 'frontend'
|
||||
const frontendService = new ecs.FargateService(
|
||||
this,
|
||||
'FrontendService',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue