更新heimdall应用到最新版本,支持中文语言 (#1607)

* heimdall更新到最新版本

* update version latest to 2.6.1
This commit is contained in:
TURBO
2024-06-18 14:20:17 +08:00
committed by GitHub
parent bd367db4c8
commit 84401f8df3
2 changed files with 4 additions and 4 deletions
+25
View File
@@ -0,0 +1,25 @@
additionalProperties:
formFields:
- default: 40049
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
required: true
rule: paramPort
type: number
- default: 40050
edit: true
envKey: PANEL_APP_PORT_HTTPS
labelEn: HTTPS Port
labelZh: HTTPS端口
required: true
rule: paramPort
type: number
- default: Asia/Shanghai
edit: true
envKey: TIME_ZONE
labelEn: Time zone
labelZh: 时区
required: true
type: text
+22
View File
@@ -0,0 +1,22 @@
services:
heimdall:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
- "${PANEL_APP_PORT_HTTPS}:443"
volumes:
- "./data:/config"
environment:
- PUID=1000
- PGID=1000
- TZ=${TIME_ZONE}
image: linuxserver/heimdall:2.6.1
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true