Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Forked from OzieWest/01_file.json
Created February 16, 2022 00:37
Show Gist options
  • Save jrichardsz/603bcfb3d4246648e47f63c9538936db to your computer and use it in GitHub Desktop.
Save jrichardsz/603bcfb3d4246648e47f63c9538936db to your computer and use it in GitHub Desktop.
Dockerrun.aws.json
{
"AWSEBDockerrunVersion": "1",
"Authentication": {
"Bucket": "yourbucketname",
"Key": ".dockercfg.json"
},
"Image": {
"Name": "umitunal/spring-boot-docker",
"Update": "true"
},
"Ports": [
{
"ContainerPort": "8080"
}
],
"Logging": "/var/log"
}
{
"AWSEBDockerrunVersion": 2,
"authentication":
{
"bucket": "dockerbenefitsconfig",
"key": ".dockercfg"
}
},
"containerDefinitions": [
{
"name": "benefitsservices",
"image": "registry.privatebenefitsregistry.com:443/uibenefits/applyforbenefitsservice",
"essential": true,
"memory": 2000,
"portMappings": [
{
"hostPort": 8080,
"containerPort": 8080,
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment