1
0

chore(deps): update dpanel/dpanel docker tag to v1.9.3 (#3357)

This commit is contained in:
renovate[bot]
2026-01-09 09:54:39 +00:00
committed by GitHub
parent aee6e03db6
commit c13a4970b0
7 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: DPANEL_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 8080
edit: true
envKey: PANEL_APP_PORT_ADMIN
labelZh: WebUI 端口
labelEn: WebUI port
label:
en: WebUI port
zh: WebUI 端口
required: true
rule: paramPort
type: number
- default: 80
edit: true
envKey: PANEL_APP_PORT_HTTP
labelZh: HTTP 服务端口
labelEn: HTTP service port
label:
en: HTTP service port
zh: HTTP 服务端口
required: true
rule: paramPort
type: number
- default: 443
edit: true
envKey: PANEL_APP_PORT_HTTPS
labelZh: HTTPS 服务端口
labelEn: HTTPS service port
label:
en: HTTPS service port
zh: HTTPS 服务端口
required: true
rule: paramPort
type: number

View File

@@ -0,0 +1,23 @@
networks:
1panel-network:
external: true
services:
dpanel:
image: dpanel/dpanel:1.9.3
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_ADMIN}:8080
- ${PANEL_APP_PORT_HTTP}:80
- ${PANEL_APP_PORT_HTTPS}:443
volumes:
- ${DPANEL_ROOT_PATH}/data:/dpanel
- ${DPANEL_ROOT_PATH}/compose:/dpanel/compose
- /var/run/docker.sock:/var/run/docker.sock
environment:
- APP_NAME=${CONTAINER_NAME}