Skip to content

Instantly share code, notes, and snippets.

@estenssoros
Created September 20, 2023 09:08
Show Gist options
  • Save estenssoros/26b89cb6c0213db37c97c966ef3ca17d to your computer and use it in GitHub Desktop.
Save estenssoros/26b89cb6c0213db37c97c966ef3ca17d to your computer and use it in GitHub Desktop.
Docker, ECR, Elastic Beanstalk, & Terraform Dockerrun.aws.json.tpl
{
"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