-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
83 lines (82 loc) · 2.59 KB
/
manifest.json
File metadata and controls
83 lines (82 loc) · 2.59 KB
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
{
"meta": {
"build_args": {
"PRODUCT_NAME": "lepp",
"PRODUCT_VERSION": "0.3",
"BASE_IMAGE": "$REPO/php-fpm:7.3",
"KEEP_USER": "www-data"
},
"containers": [
{
"name": "lepp",
"version": "0.3",
"environment": {
"INIT_URL": "https://s3.amazonaws.com/lexp-test/test.tar.gz"
},
"mountPoints": [
{
"sourceVolume": "webroot",
"containerPath": "/var/www/html",
"readOnly": false
},
{
"sourceVolume": "vhosts",
"containerPath": "/etc/turnkey/vhosts",
"readOnly": false
},
{
"sourceVolume": "initdb",
"containerPath": "/etc/turnkey/initdb",
"readOnly": false
}
],
"cpu": 512,
"ram": 512
},
{
"name": "nginx",
"version": "1.14.2",
"ports": { "80": "tcp", "443": "tcp" },
"mountPoints": [
{
"sourceVolume": "webroot",
"containerPath": "/var/www/html",
"readOnly": true
},
{
"sourceVolume": "vhosts",
"containerPath": "/etc/turnkey/vhosts",
"readOnly": true
}
],
"cpu": 256,
"ram": 512
},
{
"name": "postgres",
"version": "11",
"cpu": 256,
"ram": 1024,
"mountPoints": [
{
"sourceVolume": "initdb",
"containerPath": "/etc/turnkey/initdb",
"readOnly": true
},
{
"sourceVolume": "secrets",
"containerPath": "/etc/turnkey/secrets",
"readOnly": true
}
]
}
],
"volumes": [
{ "name": "webroot" },
{ "name": "db-data" },
{ "name": "initdb" },
{ "name": "secrets" },
{ "name": "vhosts" }
]
}
}