forked from lbracken/docker-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-task-definition.json
83 lines (83 loc) · 1.7 KB
/
aws-task-definition.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"taskDefinitionArn": "arn:aws:ecs:us-east-1:793100814358:task-definition/docker-example:3",
"revision": 3,
"containerDefinitions": [
{
"volumesFrom": [],
"portMappings": [],
"command": [],
"environment": [],
"essential": true,
"entryPoint": [],
"links": [],
"mountPoints": [],
"memory": 512,
"name": "mongo",
"cpu": 256,
"image": "mongo"
},
{
"volumesFrom": [],
"portMappings": [],
"command": [],
"environment": [],
"essential": true,
"entryPoint": [],
"links": [],
"mountPoints": [],
"memory": 64,
"name": "app1",
"cpu": 256,
"image": "lbracken/docker-example-app1"
},
{
"volumesFrom": [],
"portMappings": [],
"command": [],
"environment": [],
"essential": true,
"entryPoint": [],
"links": [
"mongo:db"
],
"mountPoints": [],
"memory": 64,
"name": "app2",
"cpu": 256,
"image": "lbracken/docker-example-app2"
},
{
"volumesFrom": [
{
"readOnly": true,
"sourceContainer": "app1"
},
{
"readOnly": true,
"sourceContainer": "app2"
}
],
"portMappings": [
{
"hostPort": 80,
"containerPort": 80
}
],
"command": [],
"environment": [],
"essential": true,
"entryPoint": [],
"links": [
"app1:app1",
"app2:app2"
],
"mountPoints": [],
"memory": 128,
"name": "nginx",
"cpu": 256,
"image": "lbracken/docker-example-nginx"
}
],
"volumes": [],
"family": "docker-example"
}