-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
99 lines (99 loc) · 3.15 KB
/
manifest.json
File metadata and controls
99 lines (99 loc) · 3.15 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"meta": {
"build_args": {
"PRODUCT_NAME": "drupal",
"PRODUCT_VERSION": "8",
"KEEP_USER": "www-data",
"BASE_IMAGE": "$REPO/php-fpm:7.3"
},
"containers": [
{
"name": "drupal",
"version": "8",
"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
},
{
"sourceVolume": "secrets",
"containerPath": "/etc/turnkey/secrets",
"readOnly": true
}
],
"environment": {
"APP_USER": "admin",
"APP_PASS": "turnkey1",
"APP_MAIL": "[email protected]",
"DB_USER": "drupal",
"DB_NAME": "drupal",
"DB_PASS": "turnkey1"
},
"cpu": 256,
"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": 256
},
{
"name": "mariadb",
"version": "10.3",
"mountPoints": [
{
"sourceVolume": "initdb",
"containerPath": "/etc/turnkey/initdb",
"readOnly": true
},
{
"sourceVolume": "secrets",
"containerPath": "/etc/turnkey/secrets",
"readOnly": true
}
],
"environment": {
"DB_USER": "drupal",
"DB_NAME": "drupal",
"DB_PASS": "turnkey1"
},
"cpu": 256,
"ram": 512
}
],
"volumes": [
{ "name": "webroot" },
{ "name": "vhosts" },
{ "name": "initdb" },
{ "name": "secrets" }
]
}
}