-
Notifications
You must be signed in to change notification settings - Fork 16
/
thepaperlessproject-paperless-webserver.json
81 lines (81 loc) · 1.52 KB
/
thepaperlessproject-paperless-webserver.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
{
"cmd": "gunicorn -b 0.0.0.0:8000",
"enable_restart_policy": true,
"env_variables": [
{
"key": "TZ",
"value": "Europe/Zurich"
},
{
"key": "PAPERLESS_EXPORT_DIR",
"value": "/export"
},
{
"key": "PAPERLESS_CONSUMPTION_DIR",
"value": "/consume"
},
{
"key": "PAPERLESS_DBPASS",
"value": "1234"
},
{
"key": "PAPERLESS_DBUSER",
"value": "paperless"
},
{
"key": "PAPERLESS_DBHOST",
"value": "postgres"
},
{
"key": "USERMAP_UID",
"value": "114670"
},
{
"key": "USERMAP_GID",
"value": "104555"
},
{
"key": "PAPERLESS_DISABLE_LOGIN",
"value": "true"
},
{
"key": "PAPERLESS_LIST_PER_PAGE",
"value": "100"
},
{
"key": "PAPERLESS_INLINE_DOC",
"value": "true"
},
{
"key": "PAPERLESS_FILENAME_FORMAT",
"value": "{correspondent}/{title}-{created}"
}
],
"image": "thepaperlessproject/paperless:latest",
"links": [
{
"alias": "postgres",
"link_container": "postgres"
}
],
"name": "thepaperlessproject-paperless-webserver",
"port_bindings": [
{
"container_port": 8000,
"host_port": 8000,
"type": "tcp"
}
],
"volume_bindings": [
{
"host_volume_file": "/paperless/dumpdata",
"mount_point": "/dump",
"type": "rw"
},
{
"host_volume_file": "/paperless/media",
"mount_point": "/usr/src/paperless/media",
"type": "rw"
}
]
}