-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-config.edn
38 lines (38 loc) · 1.7 KB
/
docker-config.edn
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
{:blob-store-dir "/llar/blobs"
:credentials-file "/llar/credentials.edn"
:runtime-config-dir "/llar/config"
:commands {:mercury-parser "/usr/local/bin/postlight-parser"
:pandoc "pandoc"
:w3m "w3m"
:lynx "lynx"
:html2text "html2text"}
:postgresql {:frontend {:database-name "llar"
:adapter "postgresql"
:server-name "db"
:username "llar"
:auto-commit true
:read-only false
:connection-timeout 30000
:validation-timeout 5000
:idle-timeout 600000
:max-lifetime 1800000
:minimum-idle 5
:maximum-pool-size 5
:register-mbeans false
:pool-name "frontend"
:password "changeme"}
:backend {:database-name "llar"
:adapter "postgresql"
:server-name "db"
:username "llar"
:auto-commit true
:read-only false
:connection-timeout 30000
:validation-timeout 5000
:idle-timeout 600000
:max-lifetime 1800000
:minimum-idle 10
:maximum-pool-size 10
:register-mbeans false
:pool-name "backend"
:password "changeme"}}}