1
0

chore(deps): update jc21/nginx-proxy-manager docker tag to v2.13.5 (#2542)

This commit is contained in:
renovate[bot]
2025-11-19 01:41:38 +00:00
committed by GitHub
parent 05f650022d
commit 12b6677a26
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
CONTAINER_NAME="nginx-proxy-manager"
PANEL_APP_PORT_HTTP1="30081"
PANEL_APP_PORT_HTTP2="30443"
PANEL_APP_PORT_HTTP="30080"
SSL_PATH="./data/ssl"
DATA_PATH="./data/data"

View File

@@ -0,0 +1,55 @@
additionalProperties:
formFields:
- default: 30080
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: HTTP Port
labelZh: HTTP端口
label:
en: HTTP Port
zh: HTTP端口
required: true
rule: paramPort
type: number
- default: 30081
edit: true
envKey: PANEL_APP_PORT_HTTP1
labelEn: Console Port
labelZh: 控制台端口
label:
en: Console Port
zh: 控制台端口
required: true
rule: paramPort
type: number
- default: 30443
edit: true
envKey: PANEL_APP_PORT_HTTP2
labelEn: HTTPS Port
labelZh: HTTPS端口
label:
en: HTTPS Port
zh: HTTPS端口
required: true
rule: paramPort
type: number
- default: ./data/data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
label:
en: Data folder path
zh: 数据文件夹路径
required: true
type: text
- default: ./data/ssl
edit: true
envKey: SSL_PATH
labelEn: SSL folder path
labelZh: 证书文件夹路径
label:
en: SSL folder path
zh: 证书文件夹路径
required: true
type: text

View File

@@ -0,0 +1,20 @@
services:
nginxpm:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:80"
- "${PANEL_APP_PORT_HTTP1}:81"
- "${PANEL_APP_PORT_HTTP2}:443"
volumes:
- "${DATA_PATH}:/data"
- "${SSL_PATH}:/etc/letsencrypt"
image: jc21/nginx-proxy-manager:2.13.5
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true