forked from aws-samples/ecs-demo-php-simple-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaskdef.json
55 lines (55 loc) · 1.42 KB
/
taskdef.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"networkMode": "bridge",
"taskRoleArn": null,
"containerDefinitions": [
{
"volumesFrom": [],
"memory": 300,
"extraHosts": [],
"dnsServers": [],
"disableNetworking": null,
"dnsSearchDomains": [],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80,
"protocol": "tcp"
}
],
"hostname": null,
"essential": true,
"entryPoint": [],
"mountPoints": [],
"name": "php-simple-app",
"ulimits": [],
"dockerSecurityOptions": [],
"environment": [],
"links": [],
"workingDirectory": null,
"readonlyRootFilesystem": null,
"image": "REPOSITORY_URI:BUILD_NUMBER",
"command": [],
"user": null,
"dockerLabels": {},
"logConfiguration": null,
"cpu": 10,
"privileged": null,
"memoryReservation": null
}
],
"volumes": [
{
"host": {
"sourcePath": null
},
"name": "my-vol"
}
],
"family": "LizStandard2-PhpTaskDefinition-1EQMDXBXUOOB6",
"placementConstraints": [
{
"field": "instanceId",
"type": "spread"
}
]
}