feat: Support for Calibre-Web 0.6.23

This commit is contained in:
wanghe-fit2cloud
2024-09-20 15:28:31 +08:00
parent d13b011285
commit 890e58c667
2 changed files with 1 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
additionalProperties:
formFields:
- default: 40109
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
required: true
rule: paramPort
type: number
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true
type: text
@@ -0,0 +1,23 @@
services:
calibre-web:
image: linuxserver/calibre-web:0.6.23
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8083"
volumes:
- "./data/config:/config"
- "./data/books:/books"
environment:
- PUID=1000
- PGID=1000
- TZ=${TIME_ZONE}
- DOCKER_MODS=linuxserver/mods:universal-calibre
- OAUTHLIB_RELAX_TOKEN_SCOPE=1
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true