forked from linuxserver/docker-calibre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme-vars.yml
72 lines (63 loc) · 4.08 KB
/
readme-vars.yml
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
---
# project information
project_name: calibre
project_url: "https://calibre-ebook.com/"
project_logo: "/~https://github.com/kovidgoyal/calibre/raw/master/resources/images/lt.png"
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) 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."
project_lsio_github_repo_url: "/~https://github.com/linuxserver/docker-{{ project_name }}"
project_blurb_optional_extras_enabled: false
# supported architectures
available_architectures:
- { arch: "{{ arch_x86_64 }}", tag: "latest"}
# development version
development_versions: false
# container parameters
common_param_env_vars_enabled: true
param_container_name: "{{ project_name }}"
param_usage_include_net: false
param_usage_include_env: true
param_env_vars:
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
param_usage_include_vols: true
param_volumes:
- { vol_path: "/config", vol_host_path: "/path/to/data", desc: "Where calibre should store its database and library." }
param_usage_include_ports: true
param_ports:
- { external_port: "8080", internal_port: "8080", port_desc: "Calibre desktop gui." }
- { external_port: "8081", internal_port: "8081", port_desc: "Calibre webserver gui." }
param_device_map: false
cap_add_param: false
cap_add_param_vars: ''
# optional container parameters
opt_param_usage_include_env: true
opt_param_env_vars:
- { env_var: "PASSWORD", env_value: "", desc: "Optionally set a password for the gui." }
- { env_var: "CLI_ARGS", env_value: "", desc: "Optionally pass cli start arguments to calibre."}
opt_param_usage_include_vols: false
opt_param_usage_include_ports: false
opt_param_device_map: false
opt_cap_add_param: false
optional_block_1: false
# application setup block
app_setup_block_enabled: true
app_setup_block: |
This image sets up the calibre desktop app and makes its interface available via Guacamole server in the browser. The interface is available at `http://your-ip:8080`.
By default, there is no password set for the main gui. Optional environment variable `PASSWORD` will allow setting a password for the user `abc`.
Port 8081 is reserved for Calibre's built-in webserver, which can be enabled within the desktop app settings, and the internal port must be set to `8081` although it will then be available at the host mapped port for external access.
You can access advanced features of the Guacamole remote desktop using `ctrl`+`alt`+`shift` enabling you to use remote copy/paste and different languages.
# changelog
changelogs:
- { date: "20.04.21:", desc: "Fix the HOME folder." }
- { date: "19.04.21:", desc: "Add libnss3 back in. Make sure Calibre can access environment variables." }
- { date: "18.04.21:", desc: "Start calibre on container start rather than gui connect." }
- { date: "15.04.21:", desc: "Rebase to rdesktop-web baseimage. Deprecate `GUAC_USER` and `GUAC_PASS` env vars. Existing users can set the new var `PASSWORD` for the user `abc`." }
- { date: "25.09.20:", desc: "Switch to python3, add various new dependencies for calibre 5.0." }
- { date: "10.05.19:", desc: "Add new env var `CLI_ARGS` to pass start arguments to calibre." }
- { date: "18.03.19:", desc: "Let Calibre access environment variables, add optional umask setting." }
- { date: "23.10.19:", desc: "Remove reccomended deps and zenity for character compatibility." }
- { date: "18.10.19:", desc: "Add python-xdg." }
- { date: "08.10.19:", desc: "Add fonts-wqy-microhei ttf-wqy-zenhei fcitx-rime dependency to resolve issue with Chinese encoding." }
- { date: "04.10.19:", desc: "Add libxkbcommon-x11-0 dependency to resolve issue with Calibre 4." }
- { date: "08.08.19:", desc: "Add zenity for international character support in dialog boxes." }
- { date: "12.07.19:", desc: "Download binary from calibre website instead of github." }
- { date: "29.04.19:", desc: "Initial release." }