Add calibre + calibre-web (disabled by default)
This commit is contained in:
parent
e7cbdf9ef3
commit
4020d2f4c2
|
@ -38,6 +38,8 @@ PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
||||||
FLOOD_PASSWORD=myfloodpassword
|
FLOOD_PASSWORD=myfloodpassword
|
||||||
FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false
|
FLOOD_AUTOCREATE_USER_IN_DELUGE_DAEMON=false
|
||||||
|
|
||||||
|
CALIBRE_PASSWORD=mycalibrepassword
|
||||||
|
|
||||||
# Wireguard custom endpoint
|
# Wireguard custom endpoint
|
||||||
WIREGUARD_ENDPOINT=<ENDPOINT>
|
WIREGUARD_ENDPOINT=<ENDPOINT>
|
||||||
WIREGUARD_PORT=51820
|
WIREGUARD_PORT=51820
|
||||||
|
|
|
@ -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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| 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 |
|
| Ombi | ombi.yourdomain.com | [linuxserver/ombi](https://hub.docker.com/r/linuxserver/ombi) | *latest* | Plex content requests |
|
||||||
|
|
|
@ -111,6 +111,19 @@ services:
|
||||||
- host: readarr.${TRAEFIK_DOMAIN}
|
- host: readarr.${TRAEFIK_DOMAIN}
|
||||||
httpAuth: true
|
httpAuth: true
|
||||||
internalPort: 8787
|
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
|
- name: komga
|
||||||
enabled: false
|
enabled: false
|
||||||
vpn: false
|
vpn: false
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue