1
0

chore(deps): update uusec/openresty-manager docker tag to v2.4.2 (#2764)

This commit is contained in:
renovate[bot]
2025-12-03 10:20:16 +00:00
committed by GitHub
parent 60fb3417da
commit 52b31d9961
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,45 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: OPENRESTY_MANAGER_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 34567
edit: true
envKey: PANEL_APP_PORT_HTTP
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_NGINX_HTTP
labelZh: Nginx 端口
labelEn: Nginx port
label:
en: Nginx port
zh: Nginx 端口
required: true
rule: paramPort
type: number
- default: 443
edit: true
envKey: PANEL_APP_PORT_NGINX_HTTPS
labelZh: Nginx SSL 端口
labelEn: Nginx SSL port
label:
en: Nginx SSL port
zh: Nginx SSL 端口
required: true
rule: paramPort
type: number

View File

@@ -0,0 +1,27 @@
networks:
1panel-network:
external: true
services:
openresty-manager:
image: uusec/openresty-manager:2.4.2
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:34567
- ${PANEL_APP_PORT_NGINX_HTTP}:80
- ${PANEL_APP_PORT_NGINX_HTTPS}:443
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/resolv.conf:/etc/resolv.conf:ro
- /var/run/docker.sock:/var/run/docker.sock
- ${OPENRESTY_MANAGER_ROOT_PATH}/acme:/opt/om/acme
- ${OPENRESTY_MANAGER_ROOT_PATH}/data:/opt/om/data
- ${OPENRESTY_MANAGER_ROOT_PATH}/conf:/opt/om/nginx/conf
- ${OPENRESTY_MANAGER_ROOT_PATH}/logs:/opt/om/nginx/logs
environment:
- TZ=Asia/Shanghai