Add calibre + calibre-web (disabled by default)

This commit is contained in:
Jean Froment 2022-11-07 22:01:03 +01:00
parent e7cbdf9ef3
commit 4020d2f4c2
4 changed files with 48 additions and 0 deletions

View File

@ -38,6 +38,8 @@ PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
FLOOD_PASSWORD=myfloodpassword
FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false
CALIBRE_PASSWORD=mycalibrepassword
# Wireguard custom endpoint
WIREGUARD_ENDPOINT=<ENDPOINT>
WIREGUARD_PORT=51820

View File

@ -39,6 +39,7 @@ Version 2 is released, please make sure you read [this V2 Migration Guide](doc/U
| Bazarr | bazarr.yourdomain.com | [linuxserver/bazarr](https://hub.docker.com/r/linuxserver/bazarr) | *latest* | Subtitles monitor |
| Lidarr | lidarr.yourdomain.com | [linuxserver/lidarr](https://hub.docker.com/r/linuxserver/lidarr) | *develop* | Music monitor |
| Readarr | readarr.yourdomain.com | [linuxserver/readarr](https://hub.docker.com/r/linuxserver/readarr) | *nightly* | Ebook and comic monitor |
| Calibre + Calibre-web | calibre.yourdomain.com | [linuxserver/calibre-web](https://hub.docker.com/r/linuxserver/calibre-web) | *latest* | Book management + UI |
| Komga | komga.yourdomain.com | [gotson/komga](https://hub.docker.com/r/gotson/komga) | *latest* | Comic Book Manager |
| Kavita | Kavita.yourdomain.com | [gotson/komga](https://hub.docker.com/r/gotson/komga) | *latest* | Comic Book Manager |
| Ombi | ombi.yourdomain.com | [linuxserver/ombi](https://hub.docker.com/r/linuxserver/ombi) | *latest* | Plex content requests |

View File

@ -111,6 +111,19 @@ services:
- host: readarr.${TRAEFIK_DOMAIN}
httpAuth: true
internalPort: 8787
- name: calibre
enabled: false
vpn: false
traefik:
enabled: true
rules:
- host: calibre-admin.${TRAEFIK_DOMAIN}
httpAuth: true
internalPort: 8080
- host: calibre.${TRAEFIK_DOMAIN}
httpAuth: true
service: calibre-web
internalPort: 8083
- name: komga
enabled: false
vpn: false

32
services/calibre.yaml Normal file
View File

@ -0,0 +1,32 @@
services:
calibre:
image: ghcr.io/linuxserver/calibre
container_name: calibre
restart: always
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- PASSWORD=${CALIBRE_PASSWORD}
- CLI_ARGS=
volumes:
- configcalibre:/config
calibre-web:
image: hcr.io/linuxserver/calibre-web
container_name: calibre-web
restart: always
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
- DOCKER_MODS=linuxserver/mods:universal-calibre
- OAUTHLIB_RELAX_TOKEN_SCOPE=1
volumes:
- configcalibre:/config
volumes:
configcalibre:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/calibre