-
Notifications
You must be signed in to change notification settings - Fork 98
/
calibre.json
82 lines (82 loc) · 4.13 KB
/
calibre.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
{
"Calibre": {
"description": "Calibre is a powerful and easy to use e-book manager. Users say it's outstanding and a must-have. It'll allow you to do nearly everything and it takes things a step beyond normal e-book software. It's also completely free and open source and great for both casual users and computer experts.</p><p>Calibre can be accessed using http (default), https, or through a simple built-in web server (see documentation how to activate within the app and note the web UI port required in the Rockon configuration).</p><p>Based on a custom docker image: <a href='https://hub.docker.com/r/linuxserver/Calibre' target='_blank'>https://hub.docker.com/r/linuxserver/Calibre</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.0",
"website": "https://Calibre-ebook.com/",
"icon": "https://github.com/kovidgoyal/Calibre/blob/master/icons/favicon.ico",
"ui": {
"slug": ""
},
"volume_add_support": false,
"containers": {
"calibreserver": {
"image": "linuxserver/calibre",
"launch_order": 1,
"opts": [
[
"-e",
"DOCKER_MODS=linuxserver/mods:universal-package-install"
],
[
"-e",
"INSTALL_PACKAGES=fonts-noto-cjk"
]
], "devices": {
"/dev/dri": {
"description": "(Optional) Path for mounting GPU into container (/dev/dri). Leave blank if not needed.",
"label": "GPU device"
}
},
"ports": {
"8080": {
"description": "Calibre Desktop (Backend) Access using http. Suggested default is 8080",
"host_default": 8080,
"label": "Desktop port (http)",
"protocol": "tcp",
"ui": true
},
"8181": {
"description": "Calibre Desktop (Backend) Access using https. Suggested default is 8181",
"host_default": 8181,
"label": "Desktop port (https)",
"protocol": "tcp",
"ui": false
},
"8081": {
"description": "Calibre Web Server access port. Suggested default: 8081",
"host_default": 8081,
"label": "Web Server port",
"protocol": "tcp",
"ui": false
}
},
"volumes": {
"/config": {
"description": "Choose a Share for the Calibre configuration. E.g.: create a Share called Calibre-config for this purpose alone.",
"label": "Config Storage"
}
},
"environment": {
"PUID": {
"description": "Enter a valid UID of an existing user with permission to the config share assigned above.",
"label": "UID",
"index": 1,
"default":1000
},
"PGID": {
"description": "Enter a valid GID of an existing user with permission to the config share assigned above.",
"label": "GID",
"index": 2,
"default":1000
},
"LC_ALL": {
"description": "Define which locale to start Calibre in, using utf8 (e.g., zh_CN.UTF-8). If in US English, enter 'en_US.UTF-8'. The language can still be adjusted within Calibre's startup wizard.",
"label": "Locale installs",
"index": 3,
"default": "en_US.UTF-8"
}
}
}
}
}
}