Skip to content

Instantly share code, notes, and snippets.

@Tdual
Created October 22, 2018 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tdual/0dac8a2dda8bc0703c10f806f267eb68 to your computer and use it in GitHub Desktop.
Save Tdual/0dac8a2dda8bc0703c10f806f267eb68 to your computer and use it in GitHub Desktop.
Dockerrun.aws.json
{
"AWSEBDockerrunVersion": 2,
"volumes": [
{
"name": "storage",
"host": {
"sourcePath": "/storage"
}
}
],
"containerDefinitions": [
{
"name": "name",
"image": "xxxxxxxxxxxxxxxxxxxxxxxxx:latest",
"essential": true,
"memory": 7700,
"mountPoints": [
{
"sourceVolume": "storage",
"containerPath": "/opt/app/src/storage"
}
],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment