-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-test.json
More file actions
40 lines (40 loc) · 1.07 KB
/
Copy pathdocker-test.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"databases": {
"local-mysql": {
"type": "mysql",
"url": "mysql://test:test@127.0.0.1:3306/app",
"readonly": false,
"blacklist": ["drop", "truncate"],
"keepAliveSeconds": 180
},
"local-postgres": {
"type": "postgres",
"url": "postgres://test:test@127.0.0.1:5432/app",
"readonly": false,
"blacklist": ["drop", "truncate"],
"keepAliveSeconds": 180
},
"local-redis": {
"type": "redis",
"url": "redis://127.0.0.1:6379",
"readonly": false,
"blacklist": ["flushall", "flushdb"],
"keepAliveSeconds": 180
},
"local-mongodb": {
"type": "mongodb",
"url": "mongodb://test:test@127.0.0.1:27017/app?authSource=admin",
"database": "app",
"readonly": false,
"blacklist": ["drop", "dropDatabase", "deleteMany"],
"keepAliveSeconds": 180
},
"local-oracle": {
"type": "oracle",
"url": "oracle://test:test@127.0.0.1:1521/FREEPDB1",
"readonly": false,
"blacklist": ["drop", "truncate"],
"keepAliveSeconds": 180
}
}
}