-
Notifications
You must be signed in to change notification settings - Fork 16
/
thepaperlessproject-paperless-consumer.json
92 lines (92 loc) · 1.77 KB
/
thepaperlessproject-paperless-consumer.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
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
{
"cmd": "document_consumer",
"enable_restart_policy": true,
"env_variables": [
{
"key": "TZ",
"value": "Europe/Zurich"
},
{
"key": "PAPERLESS_EXPORT_DIR",
"value": "/export"
},
{
"key": "PAPERLESS_CONSUMPTION_DIR",
"value": "/consume"
},
{
"key": "OMP_THREAD_LIMIT",
"value": "1"
},
{
"key": "PAPERLESS_DBPASS",
"value": "1234"
},
{
"key": "PAPERLESS_DBUSER",
"value": "paperless"
},
{
"key": "PAPERLESS_DBHOST",
"value": "postgres"
},
{
"key": "PAPERLESS_CONVERT_MEMORY_LIMIT",
"value": "32000000"
},
{
"key": "USERMAP_UID",
"value": "114670"
},
{
"key": "USERMAP_GID",
"value": "104555"
},
{
"key": "PAPERLESS_OCR_LANGUAGES",
"value": "fra"
},
{
"key": "PAPERLESS_OCR_THREADS",
"value": "1"
},
{
"key": "PAPERLESS_FORGIVING_OCR",
"value": "true"
},
{
"key": "PAPERLESS_FILENAME_FORMAT",
"value": "{correspondent}/{title}-{created}"
}
],
"image": "thepaperlessproject/paperless:latest",
"links": [
{
"alias": "postgres",
"link_container": "postgres"
}
],
"name": "thepaperlessproject-paperless-consumer",
"volume_bindings": [
{
"host_volume_file": "/paperless/dumpdata",
"mount_point": "/dumpdata",
"type": "rw"
},
{
"host_volume_file": "/paperless/export",
"mount_point": "/export",
"type": "rw"
},
{
"host_volume_file": "/paperless/consume",
"mount_point": "/consume",
"type": "rw"
},
{
"host_volume_file": "/paperless/media",
"mount_point": "/usr/src/paperless/media",
"type": "rw"
}
]
}