Skip to content

Commit

Permalink
Add dynamic compose for nodered (#6098)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancelot-Enguerrand authored Dec 23, 2024
1 parent d7d2e84 commit 5a8d6f3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/nodered/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"port": 8111,
"available": true,
"exposable": true,
"dynamic_config": true,
"id": "nodered",
"tipi_version": 23,
"tipi_version": 24,
"version": "4.0.8",
"categories": ["automation"],
"description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.",
Expand All @@ -15,5 +16,5 @@
"form_fields": [],
"supported_architectures": ["arm64", "amd64"],
"created_at": 1691943801422,
"updated_at": 1734716035000
"updated_at": 1734908489671
}
16 changes: 16 additions & 0 deletions apps/nodered/docker-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"services": [
{
"name": "nodered",
"image": "nodered/node-red:4.0.8",
"isMain": true,
"internalPort": 1880,
"volumes": [
{
"hostPath": "${APP_DATA_DIR}/data",
"containerPath": "/data"
}
]
}
]
}

0 comments on commit 5a8d6f3

Please sign in to comment.