Created
September 20, 2023 09:08
-
-
Save estenssoros/26b89cb6c0213db37c97c966ef3ca17d to your computer and use it in GitHub Desktop.
Docker, ECR, Elastic Beanstalk, & Terraform Dockerrun.aws.json.tpl
This file contains 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
{ | |
"AWSEBDockerrunVersion": "1", | |
"Image": { | |
"Name": "${image_name}", | |
"Update": "true" | |
}, | |
"Ports": [ | |
{ | |
"ContainerPort": "1323", | |
"HostPort": "1323" | |
} | |
], | |
"Entrypoint": "/root/app", | |
"Command": "arg" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment