-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp_manifest_main.json
61 lines (61 loc) · 1.38 KB
/
app_manifest_main.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
{
"acVersion": "1.0.0",
"acKind": "AppManifest",
"name": "coreos.com/ace-validator-main",
"version": "1.0.0",
"os": "linux",
"arch": "amd64",
"exec": [
"/ace-validator", "main"
],
"eventHandlers": [
{
"name": "pre-start",
"exec": [
"/ace-validator", "prestart"
]
},
{
"name": "post-stop",
"exec": [
"/ace-validator", "poststop"
]
}
],
"user": "0",
"group": "0",
"environment": {
"IN_ACE_VALIDATOR": "correct"
},
"mountPoints": [
{
"name": "database",
"path": "/db",
"readOnly": false
}
],
"ports": [
{
"name": "www",
"protocol": "tcp",
"port": 80
}
],
"isolators": [
{
"name": "private-network",
"val": "true"
},
{
"name": "memory/limit",
"val": "1G"
}
],
"annotations": {
"created": "2014-10-27T19:32:27.67021798Z",
"authors": "Carly Container <[email protected]>, Nat Network <[email protected]>",
"homepage": "https://github.com/containers/standard",
"documentation": "https://github.com/containers/standard/blob/master/README.md",
"lorem": "ipsum"
}
}