-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecs.json
49 lines (49 loc) · 974 Bytes
/
ecs.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
{
"family": "php-sample_domain_com",
"containerDefinitions": [
{
"name": "php-sample_domain_com",
"image": "matthewduren/docker-phpfpm",
"cpu": 512,
"memory": 1024,
"entryPoint": [],
"environment": [
{
"name": "VIRTUAL_HOST",
"value": "sample.domain.com"
}
],
"command": [],
"portMappings": [],
"volumesFrom": [],
"links": [],
"mountPoints": [
{
"sourceVolume": "apps",
"containerPath": "/var/apps",
"readOnly": false
},
{
"sourceVolume": "logs",
"containerPath": "/var/logs/web",
"readOnly": false
}
],
"essential": true
}
],
"volumes": [
{
"name": "logs",
"host": {
"sourcePath": "/var/docker/logs/"
}
},
{
"name": "apps",
"host": {
"sourcePath": "/var/docker/apps/"
}
}
]
}