This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REPOSITORIES 2019-02-08T15:25:50+13:00 MUTABLE xxxxxxxx arn:aws:ecr:us-west-2:xxxxxxxx:repository/boilerplate/boilerplate-api boilerplate/boilerplate-api xxxxxxxx.dkr.ecr.us-west-2.amazonaws.com/boilerplate/boilerplate-api | |
IMAGESCANNINGCONFIGURATION False | |
REPOSITORIES 2020-02-07T11:46:14+13:00 MUTABLE xxxxxxxx arn:aws:ecr:us-west-2:xxxxxxxx:repository/duplicate-items partstrader/duplicate-items xxxxxxxx.dkr.ecr.us-west-2.amazonaws.com/duplicate-items | |
IMAGESCANNINGCONFIGURATION False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"repositories": [ | |
{ | |
"repositoryArn": "arn:aws:ecr:us-west-2:xxxxxxxxx:repository/boilerplate/boilerplate-api", | |
"registryId": "xxxxxxxx", | |
"repositoryName": "boilerplate/boilerplate-api", | |
"repositoryUri": "xxxxxxxx.dkr.ecr.us-west-2.amazonaws.com/boilerplate/boilerplate-api", | |
"createdAt": "2019-02-08T15:25:50+13:00", | |
"imageTagMutability": "MUTABLE", | |
"imageScanningConfiguration": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Id": "vol-027d65493f10facfc", | |
"Type": "gp2" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-volumes --query "Volumes[0].{Id:VolumeId,Type:VolumeType}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
"vol-027d65493f10facfc", | |
"gp2" | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-volumes --query "Volumes[0].[VolumeId, VolumeType]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Attachments": [ | |
{ | |
"AttachTime": "2017-11-01T22:52:41+00:00", | |
"Device": "xvdh", | |
"InstanceId": "i-xxxxxxxxxxxxxxx", | |
"State": "attached", | |
"VolumeId": "vol-xxxxxxxxxxxxxxx", | |
"DeleteOnTermination": true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws ec2 describe-volumes --query "Volumes[0]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.4' | |
services: | |
WebSite: | |
image: My-WebApp | |
container_name: WebApp | |
build: | |
context: . | |
dockerfile: Path/To/Web/Docker/File/Dockerfile | |
ports: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.4' | |
services: | |
Api: | |
image: My-Api | |
container_name: Api | |
build: | |
context: . | |
dockerfile: Path/To/Api/Docker/File/Dockerfile | |
ports: |