✨ feat(apps): add node-red app (#2623)
This commit is contained in:
parent
28f1b2b09d
commit
25c7d911d8
|
|
@ -0,0 +1,3 @@
|
|||
# Node-RED
|
||||
|
||||
**Node-RED** Node-RED 是一种编程工具,用于以新颖有趣的方式将硬件设备、API 和在线服务连接在一起。
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
name: Node-RED
|
||||
tags:
|
||||
- 实用工具
|
||||
title: Node-RED 编程工具
|
||||
description: Node-RED 是一个基于流的编程工具
|
||||
additionalProperties:
|
||||
key: node-red
|
||||
name: Node-RED
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: Node-RED 是一个基于流的编程工具
|
||||
shortDescEn: Node-RED is a flow-based programming tool
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://nodered.org/
|
||||
github: https://github.com/node-red/node-red
|
||||
document: https://nodered.org/docs/
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
additionalProperties:
|
||||
formFields:
|
||||
- default: "21880"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
node-red:
|
||||
image: nodered/node-red:latest
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
user: root
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:1880
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
volumes:
|
||||
- ./data:/data
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Loading…
Reference in New Issue