Skip to content

Commit

Permalink
[FEAT] 여러 도커 이미지를 배포하기 위한 파일 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
Ji hwan Shin authored and Ji hwan Shin committed Apr 11, 2024
1 parent 16fbf45 commit 5e79e03
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Dockerrun.aws.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"AWSEBDockerrunVersion": 2,
"containerDefinitions": [
{
"name": "springboot",
"image": "public.ecr.aws/k9s0h6l7/crew-dev/springboot:latest",
"essential": true,
"memory": 350,
"portMappings": [
{
"hostPort": 4000,
"containerPort": 4000
}
]
},
{
"name": "nestjs",
"image": "public.ecr.aws/k9s0h6l7/crew-dev/nestjs:latest",
"essential": true,
"memory": 450,
"portMappings": [
{
"hostPort": 3000,
"containerPort": 3000
}
]
}
]
}

0 comments on commit 5e79e03

Please sign in to comment.