-
Notifications
You must be signed in to change notification settings - Fork 526
/
app.json
42 lines (42 loc) · 1.16 KB
/
app.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
{
"name": "CHAOS (Remote Administration Tool)",
"description": "CHAOS is a free and open-source Remote Administration Tool that allow generate binaries to control remote operating systems.",
"repository": "https://github.com/tiagorlampert/CHAOS",
"logo": "https://raw.githubusercontent.com/tiagorlampert/CHAOS/master/public/logo.png",
"keywords": [
"go",
"docker"
],
"stack": "container",
"env": {
"SQLITE_DATABASE": {
"description": "The SQLite database name.",
"value": "chaos",
"required": false
},
"POSTGRES_HOST": {
"description": "The PostgreSQL host.",
"required": false
},
"POSTGRES_PORT": {
"description": "The PostgreSQL port.",
"required": false
},
"POSTGRES_USER": {
"description": "The PostgreSQL username.",
"required": false
},
"POSTGRES_PASSWORD": {
"description": "The PostgreSQL password.",
"required": false
},
"POSTGRES_DATABASE": {
"description": "The PostgreSQL database name.",
"required": false
},
"POSTGRES_SSL_MODE": {
"description": "The PostgreSQL SSL mode.",
"required": false
}
}
}