Created
September 2, 2016 11:37
-
-
Save roylee0704/38ef04598e42274d143b2d62b7f7c8ba to your computer and use it in GitHub Desktop.
Dockerrun.aws.json Syntax
This file contains hidden or 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
{ | |
"containerDefinitions": [ | |
{ | |
"command": [ "string" ], | |
"cpu": number, | |
"disableNetworking": boolean, | |
"dnsSearchDomains": [ "string" ], | |
"dnsServers": [ "string" ], | |
"dockerLabels": { | |
"string" : "string" | |
}, | |
"dockerSecurityOptions": [ "string" ], | |
"entryPoint": [ "string" ], | |
"environment": [ | |
{ | |
"name": "string", | |
"value": "string" | |
} | |
], | |
"essential": boolean, | |
"extraHosts": [ | |
{ | |
"hostname": "string", | |
"ipAddress": "string" | |
} | |
], | |
"hostname": "string", | |
"image": "string", | |
"links": [ "string" ], | |
"logConfiguration": { | |
"logDriver": "string", | |
"options": { | |
"string" : "string" | |
} | |
}, | |
"memory": number, | |
"memoryReservation": number, | |
"mountPoints": [ | |
{ | |
"containerPath": "string", | |
"readOnly": boolean, | |
"sourceVolume": "string" | |
} | |
], | |
"name": "string", | |
"portMappings": [ | |
{ | |
"containerPort": number, | |
"hostPort": number, | |
"protocol": "string" | |
} | |
], | |
"privileged": boolean, | |
"readonlyRootFilesystem": boolean, | |
"ulimits": [ | |
{ | |
"hardLimit": number, | |
"name": "string", | |
"softLimit": number | |
} | |
], | |
"user": "string", | |
"volumesFrom": [ | |
{ | |
"readOnly": boolean, | |
"sourceContainer": "string" | |
} | |
], | |
"workingDirectory": "string" | |
} | |
], | |
"family": "string", | |
"networkMode": "string", | |
"taskRoleArn": "string", | |
"volumes": [ | |
{ | |
"host": { | |
"sourcePath": "string" | |
}, | |
"name": "string" | |
} | |
] | |
} |
does executionRoleArn support by beanstalk ?
Anyone know about this yet? I'm chasing my tail here.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does executionRoleArn support by beanstalk ?