Difference between revisions of "Creating Custom Docker Images"
Jump to navigation
Jump to search
(Created page with "== Creating a Custom Docker Image == Dockerfile <pre> FROM nodered/node-red # Copy package.json to the WORKDIR so npm builds all # of your added nodes modules for Node-RED COPY package.json . RUN npm install --unsafe-perm --no-update-notifier --no-fund --only=production # Copy _your_ Node-RED project files into place # NOTE: This will only work if you DO NOT later mount /data as an external volume. # If you need to use an external volume for persistence then #...") |
|||
Line 1: | Line 1: | ||
== Creating a Custom Docker Image == | == Creating a Custom Docker Image == | ||
Create a directory containing the following files: | |||
[[File:Dockers1.png|frameless|348x348px]] | |||
Dockerfile | Dockerfile |
Revision as of 15:37, 7 September 2022
Creating a Custom Docker Image
Create a directory containing the following files:
Dockerfile
FROM nodered/node-red # Copy package.json to the WORKDIR so npm builds all # of your added nodes modules for Node-RED COPY package.json . RUN npm install --unsafe-perm --no-update-notifier --no-fund --only=production # Copy _your_ Node-RED project files into place # NOTE: This will only work if you DO NOT later mount /data as an external volume. # If you need to use an external volume for persistence then # copy your settings and flows files to that volume instead. #COPY settings.js /data/settings.js COPY flows_cred.json /data/flows_cred.json COPY flows.json /data/flows.json # You should add extra nodes via your package.json file but you can also add them here: #WORKDIR /usr/src/node-red #RUN npm install node-red-dashboard
package.json
{ "name": "zerocarboncontrol1a", "description": "testing", "version": "0.0.1", "dependencies": { "node-red": "latest", "node-red-dashboard": "3.1.7" }, "scripts": { "start": "node /usr/src/node-red/node_modules/node-red/red.js" } }