mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-03 06:14:07 +02:00
Merge pull request #727 from danbruno/calibre-wireless-port
[Calibre] Add wireless connection port to config.json
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
## v6.13.0-ls204 (21-02-2023)
|
||||||
|
- Add wireless connection port
|
||||||
|
|
||||||
## v6.13.0-ls203 (19-02-2023)
|
## v6.13.0-ls203 (19-02-2023)
|
||||||
- Update to latest version from linuxserver/docker-calibre
|
- Update to latest version from linuxserver/docker-calibre
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ Webui can be found at <http://your-ip:PORT>.
|
|||||||
Configurations can be done through the app webUI, except for the following options.
|
Configurations can be done through the app webUI, except for the following options.
|
||||||
Please read the upstream container documentation for further info : https://github.com/linuxserver/docker-calibre/blob/35b5e3ae06ba95f666687150ca5fd632b8db9e87/README.md#application-setup
|
Please read the upstream container documentation for further info : https://github.com/linuxserver/docker-calibre/blob/35b5e3ae06ba95f666687150ca5fd632b8db9e87/README.md#application-setup
|
||||||
|
|
||||||
In particular, the webserver needs to be manually enabled from the desktop app with port 8081 to be able to access it.
|
In particular, the webserver and wireless connection needs to be manually enabled from the desktop app to be able to access it, using ports 8081 and 9090 respectively.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
PGID: user
|
PGID: user
|
||||||
|
|||||||
@@ -66,11 +66,13 @@
|
|||||||
"panel_icon": "mdi:book-multiple",
|
"panel_icon": "mdi:book-multiple",
|
||||||
"ports": {
|
"ports": {
|
||||||
"8080/tcp": 8080,
|
"8080/tcp": 8080,
|
||||||
"8081/tcp": 8081
|
"8081/tcp": 8081,
|
||||||
|
"9090/tcp": 9090
|
||||||
},
|
},
|
||||||
"ports_description": {
|
"ports_description": {
|
||||||
"8080/tcp": "Calibre desktop gui",
|
"8080/tcp": "Calibre desktop gui",
|
||||||
"8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui"
|
"8081/tcp": "Calibre webserver gui, to be enabled within the desktop gui",
|
||||||
|
"9090/tcp": "Calibre wireless connection, to be enabled within the desktop gui"
|
||||||
},
|
},
|
||||||
"privileged": [
|
"privileged": [
|
||||||
"SYS_ADMIN",
|
"SYS_ADMIN",
|
||||||
@@ -90,6 +92,6 @@
|
|||||||
},
|
},
|
||||||
"slug": "calibre",
|
"slug": "calibre",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre",
|
"url": "https://github.com/alexbelgium/hassio-addons/tree/master/calibre",
|
||||||
"version": "v6.13.0-ls203",
|
"version": "v6.13.0-ls203-2",
|
||||||
"video": true
|
"video": true
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user