1
0

chore(deps): update ghcr.io/go-shiori/shiori docker tag to v1.8.0 (#1829)

This commit is contained in:
renovate[bot]
2025-09-28 16:44:57 +08:00
committed by GitHub
parent ac2d4bc36f
commit c608c3773a
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,63 @@
additionalProperties:
formFields:
- child:
default: ""
envKey: PANEL_DB_HOST
required: true
type: service
default: postgresql
envKey: PANEL_DB_TYPE
labelZh: 数据库服务 (前置检查)
labelEn: Database Service
required: true
type: apps
values:
- label: PostgreSQL
value: postgresql
- label: MySQL
value: mysql
- label: MariaDB
value: mariadb
- label: Percona
value: percona
- default: "./data"
edit: true
envKey: SHIORI_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
required: true
type: text
- default: 8080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: 访问端口
labelEn: Port
required: true
rule: paramPort
type: number
- default: "True"
edit: true
envKey: SHIORI_HTTP_SERVE_WEB_UI
labelZh: 服务模式
labelEn: Serve Mode
required: true
type: select
values:
- label: Web UI 模式
value: "True"
- label: 仅限 API 模式
value: "False"
- default: ""
edit: true
envKey: SHIORI_HTTP_SECRET_KEY
labelZh: Web UI 密钥
labelEn: Web UI Secret Key
required: true
type: text
- default: ""
edit: true
envKey: SHIORI_DATABASE_URL
labelZh: 数据库链接 URL
labelEn: Database URL
required: true
type: text

View File

@@ -0,0 +1,31 @@
networks:
1panel-network:
external: true
services:
shiori:
image: ghcr.io/go-shiori/shiori:v1.8.0
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:8080
volumes:
- ${SHIORI_ROOT_PATH}/dev-data:/srv/shiori
- ${SHIORI_ROOT_PATH}/data:/src/shiori
environment:
- SHIORI_DIR=/srv/shiori
- SHIORI_DEVELOPMENT=False
- SHIORI_HTTP_ENABLED=True
- SHIORI_HTTP_PORT=8080
- SHIORI_HTTP_ROOT_PATH=/
- SHIORI_HTTP_ACCESS_LOG=True
- SHIORI_HTTP_BODY_LIMIT=1024
- SHIORI_HTTP_READ_TIMEOUT=10s
- SHIORI_HTTP_WRITE_TIMEOUT=10s
- SHIORI_HTTP_IDLE_TIMEOUT=10s
- SHIORI_HTTP_DISABLE_KEEP_ALIVE=true
- SHIORI_HTTP_DISABLE_PARSE_MULTIPART_FORM=true