mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 03:23:11 +00:00
Merge pull request #291 from bcurran3/Calibre-docs-reference-correctoins
Calibre -> Calibre-web - consistent and proper global naming convention
This commit is contained in:
commit
44f8d39188
5 changed files with 9 additions and 9 deletions
|
@ -25,7 +25,7 @@ Ansible config and a bunch of Docker containers.
|
||||||
* A Docker host with Portainer for image and container management
|
* A Docker host with Portainer for image and container management
|
||||||
* An automatic dynamic DNS updater if you use Cloudflare to host your domain DNS
|
* An automatic dynamic DNS updater if you use Cloudflare to host your domain DNS
|
||||||
* A Personal finance manager
|
* A Personal finance manager
|
||||||
* eBook management with calibre-web
|
* eBook management with Calibre-web
|
||||||
* Content management with Joomla
|
* Content management with Joomla
|
||||||
* A dual panel local file manager
|
* A dual panel local file manager
|
||||||
* Self-service media request web application
|
* Self-service media request web application
|
||||||
|
@ -36,7 +36,7 @@ Ansible config and a bunch of Docker containers.
|
||||||
* [Airsonic](https://airsonic.github.io/) - catalog and stream music
|
* [Airsonic](https://airsonic.github.io/) - catalog and stream music
|
||||||
* [Bazarr](https://github.com/morpheus65535/bazarr) - companion to Radarr and Sonarr for downloading subtitles
|
* [Bazarr](https://github.com/morpheus65535/bazarr) - companion to Radarr and Sonarr for downloading subtitles
|
||||||
* [Bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs) - Self-Hosting port of password manager
|
* [Bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs) - Self-Hosting port of password manager
|
||||||
* [Calibre](https://hub.docker.com/r/linuxserver/calibre-web) - eBook Library
|
* [Calibre-web](https://github.com/janeczku/calibre-web) - Provides a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||||
* [Cloud Commander](https://cloudcmd.io/) - A dual panel file manager with integrated web console and text editor
|
* [Cloud Commander](https://cloudcmd.io/) - A dual panel file manager with integrated web console and text editor
|
||||||
* [Cloudflare DDNS](https://hub.docker.com/r/joshuaavalon/cloudflare-ddns/) - automatically update Cloudflare with your IP address
|
* [Cloudflare DDNS](https://hub.docker.com/r/joshuaavalon/cloudflare-ddns/) - automatically update Cloudflare with your IP address
|
||||||
* [CouchPotato](https://couchpota.to/) - for downloading and managing movies
|
* [CouchPotato](https://couchpota.to/) - for downloading and managing movies
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Calibre(-web) eBook Library
|
# Calibre-web
|
||||||
|
|
||||||
Homepage: [https://github.com/janeczku/calibre-web](https://github.com/linuxserver/docker-calibre-web)
|
Homepage: [https://github.com/janeczku/calibre-web](https://github.com/janeczku/calibre-web)
|
||||||
|
|
||||||
|
|
||||||
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
|
||||||
|
|
|
@ -8,7 +8,7 @@ By default, applications can be found on the ports listed below.
|
||||||
| Bazarr | 6767 | |
|
| Bazarr | 6767 | |
|
||||||
| Bitwarden "hub" | 3012 | Web Not. |
|
| Bitwarden "hub" | 3012 | Web Not. |
|
||||||
| Bitwarden | 19080 | HTTP |
|
| Bitwarden | 19080 | HTTP |
|
||||||
| Calibre | 8084 | HTTP |
|
| Calibre-web | 8084 | HTTP |
|
||||||
| Cloud Commander | 7373 | |
|
| Cloud Commander | 7373 | |
|
||||||
| Couchpotato | 5050 | |
|
| Couchpotato | 5050 | |
|
||||||
| Duplicati | 8200 | |
|
| Duplicati | 8200 | |
|
||||||
|
|
|
@ -832,7 +832,7 @@ mosquitto_port_a: "1883"
|
||||||
mosquitto_port_b: "9001"
|
mosquitto_port_b: "9001"
|
||||||
|
|
||||||
###
|
###
|
||||||
### Calibre
|
### Calibre-web
|
||||||
###
|
###
|
||||||
calibre_available_externally: "false"
|
calibre_available_externally: "false"
|
||||||
calibre_data_directory: "{{ docker_home }}/calibre"
|
calibre_data_directory: "{{ docker_home }}/calibre"
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
- name: Create Calibre Directories
|
- name: Create Calibre-web Directories
|
||||||
file:
|
file:
|
||||||
path: "{{ item }}"
|
path: "{{ item }}"
|
||||||
state: directory
|
state: directory
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ calibre_data_directory }}/config"
|
- "{{ calibre_data_directory }}/config"
|
||||||
|
|
||||||
- name: Calibre Docker Container
|
- name: Calibre-web Docker Container
|
||||||
docker_container:
|
docker_container:
|
||||||
name: calibre
|
name: calibre
|
||||||
image: linuxserver/calibre-web:latest
|
image: linuxserver/calibre-web:latest
|
||||||
|
|
Loading…
Reference in a new issue