Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dynamic compose for nodered #6098

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
]
}
]
}
Loading