interface ContainerMountPoint
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ECS.ContainerMountPoint |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#ContainerMountPoint |
![]() | software.amazon.awscdk.services.ecs.ContainerMountPoint |
![]() | aws_cdk.aws_ecs.ContainerMountPoint |
![]() | aws-cdk-lib » aws_ecs » ContainerMountPoint |
Defines the mount point details for attaching a volume to a container.
Example
declare const cluster: ecs.Cluster;
const taskDefinition = new ecs.FargateTaskDefinition(this, 'TaskDef');
const container = taskDefinition.addContainer('web', {
image: ecs.ContainerImage.fromRegistry('amazon/amazon-ecs-sample'),
portMappings: [{
containerPort: 80,
protocol: ecs.Protocol.TCP,
}],
});
const volume = new ecs.ServiceManagedVolume(this, 'EBSVolume', {
name: 'ebs1',
managedEBSVolume: {
size: Size.gibibytes(15),
volumeType: ec2.EbsDeviceVolumeType.GP3,
fileSystemType: ecs.FileSystemType.XFS,
tagSpecifications: [{
tags: {
purpose: 'production',
},
propagateTags: ecs.EbsPropagatedTagSource.SERVICE,
}],
},
});
volume.mountIn(container, {
containerPath: '/var/lib',
readOnly: false,
});
taskDefinition.addVolume(volume);
const service = new ecs.FargateService(this, 'FargateService', {
cluster,
taskDefinition,
minHealthyPercent: 100,
});
service.addVolume(volume);
Properties
Name | Type | Description |
---|---|---|
container | string | The path on the container to mount the host volume at. |
read | boolean | Specifies whether to give the container read-only access to the volume. |
containerPath
Type:
string
The path on the container to mount the host volume at.
readOnly
Type:
boolean
Specifies whether to give the container read-only access to the volume.
If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume.