-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SEPTENTRIO-SBF-NODERED: v1.0.0 migrated to monorepo
- Loading branch information
Showing
22 changed files
with
1,364 additions
and
1,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM nodered/node-red:latest-18 | ||
|
||
USER root | ||
RUN mkdir -m 777 /components && chown node-red:node-red /components\ | ||
&& mkdir -m 777 /config && chown node-red:node-red /config \ | ||
&& mkdir -m 777 /db && chown node-red:node-red /db \ | ||
&& mkdir -m 777 /static && chown node-red:node-red /static \ | ||
&& mkdir -m 777 /tests && chown node-red:node-red /tests | ||
COPY --chown=node-red:node-red --chmod=777 tests/nodered/components/ /components/ | ||
|
||
USER node-red | ||
|
||
RUN npm i --production @coremarine/septentrio-sbf /components |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# version: '3' | ||
name: nmea-parser | ||
|
||
services: | ||
nodered: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
ports: | ||
- 1880:1880 | ||
volumes: | ||
# Node-Red working files | ||
- ./tests/nodered/data:/data | ||
- ./tests/nodered/tests:/tests | ||
# Components | ||
# - ./package.json:/components/package.json | ||
# - ./src/:/components/src/ | ||
# - ./package.json:/data/node_modules/@coremarine/nmea-parser-nodered/package.json | ||
# - ./src/:/data/node_modules/@coremarine/nmea-parser-nodered/src/ |
Oops, something went wrong.