2026-05-10 17:40:37 -04:00
|
|
|
---
|
2026-03-27 10:40:54 -04:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
io.kompose.service: calibre-web
|
|
|
|
|
name: calibre-web
|
2026-04-09 10:46:12 -04:00
|
|
|
annotations:
|
|
|
|
|
reloader.stakater.com/auto: "true"
|
2026-03-27 10:40:54 -04:00
|
|
|
spec:
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
io.kompose.service: calibre-web
|
|
|
|
|
strategy:
|
|
|
|
|
type: Recreate
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
io.kompose.service: calibre-web
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
2026-05-10 17:40:37 -04:00
|
|
|
- name: calibre-web
|
2026-06-15 17:17:25 -04:00
|
|
|
image: ghcr.io/new-usemame/calibre-web-nextgen:latest
|
2026-05-10 17:40:37 -04:00
|
|
|
env:
|
2026-03-27 10:40:54 -04:00
|
|
|
- name: PUID
|
|
|
|
|
value: "1000"
|
|
|
|
|
- name: PGID
|
|
|
|
|
value: "1000"
|
|
|
|
|
- name: TZ
|
|
|
|
|
value: America/New_York
|
|
|
|
|
- name: DOCKER_MODS
|
|
|
|
|
value: linuxserver/mods:universal-calibre
|
2026-03-27 14:20:20 -04:00
|
|
|
- name: NETWORK_SHARE_MODE
|
|
|
|
|
value: "true"
|
2026-05-10 17:40:37 -04:00
|
|
|
- name: OIDC_ENABLE
|
|
|
|
|
value: "true"
|
|
|
|
|
- name: OIDC_ISSUER
|
|
|
|
|
value: https://sso.mynest.love/realms/nest
|
2026-03-27 10:40:54 -04:00
|
|
|
ports:
|
|
|
|
|
- containerPort: 8083
|
|
|
|
|
protocol: TCP
|
2026-04-05 16:47:11 -04:00
|
|
|
name: web-ui
|
2026-03-27 10:40:54 -04:00
|
|
|
volumeMounts:
|
|
|
|
|
- mountPath: /config
|
|
|
|
|
name: calibre-web-config
|
|
|
|
|
- mountPath: /calibre-library
|
|
|
|
|
name: calibre-web-library
|
|
|
|
|
restartPolicy: Always
|
|
|
|
|
volumes:
|
|
|
|
|
- name: calibre-web-config
|
2026-06-10 20:51:10 -04:00
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: calibre-web-config-pvc
|
2026-03-27 10:40:54 -04:00
|
|
|
- name: calibre-web-library
|
|
|
|
|
nfs:
|
2026-06-08 17:49:34 -04:00
|
|
|
server: robin.home.nest
|
2026-03-27 10:40:54 -04:00
|
|
|
path: /yarr/media/books/calibre-library
|