Skip to content
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
- [ ] Siemens S7
- [ ] BACNET
- [x] I104M (legacy adapter for some OSHMI drivers)
- [x] ONVIF Camera control and streaming

## Features Roadmap

Expand Down
2 changes: 2 additions & 0 deletions compile-docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ services:
image: golang:alpine
container_name: js_calculations_compile
command: sh -c "apk update &&
apk add --no-cache libpcap-dev &&
apk add --no-cache git &&
go env -w GO111MODULE=auto &&
cd /go/src/calculations/ &&
Expand All @@ -120,6 +121,7 @@ services:
image: golang:alpine
container_name: js_i104m_compile
command: sh -c "apk update &&
apk add --no-cache libpcap-dev &&
apk add --no-cache git &&
go env -w GO111MODULE=auto &&
cd /go/src/i104m/ &&
Expand Down
16 changes: 8 additions & 8 deletions demo-docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ services:

# process incoming data
cs_data_processor:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_cs_data_processor
command: sh -c "cd /cs_data_processor && sleep 50 && node cs_data_processor.js"
restart: unless-stopped
Expand All @@ -210,7 +210,7 @@ services:

# custom script processor
cs_custom_processor:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_cs_custom_processor
command: sh -c "cd /cs_custom_processor && sleep 50 && node cs_custom_processor.js"
restart: unless-stopped
Expand All @@ -225,7 +225,7 @@ services:

# config server for excel
config_server_excel:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_config_server_excel
command: sh -c "cd /config_server_for_excel && sleep 60 && node index.js"
restart: unless-stopped
Expand All @@ -247,7 +247,7 @@ services:

# mqtt sparkplug-b driver
mqtt-sparkplug:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_mqtt-sparkplug
command: sh -c "cd /mqtt-sparkplug && sleep 60 && node index.js"
restart: unless-stopped
Expand All @@ -262,7 +262,7 @@ services:

# OPC-UA Server
opcua_server:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_opcua_server
command: sh -c "cd /OPC-UA-Server && sleep 60 && node index.js"
restart: unless-stopped
Expand All @@ -281,7 +281,7 @@ services:

# realtime web server, will listen on some HTTP port with auth, RBAC management UI
server_realtime:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_server_realtime_auth
command: sh -c "cd /server_realtime_auth && sleep 50 && node index.js"
restart: unless-stopped
Expand Down Expand Up @@ -316,7 +316,7 @@ services:

# calculation process
calculations:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_calculations
command: sh -c "sleep 50 && cd /jsonscada_bin/ && ./calculations"
restart: unless-stopped
Expand Down Expand Up @@ -406,7 +406,7 @@ services:
- jsdemo_net

telegraf_listener:
image: node:20-alpine
image: node:22-alpine
container_name: jsdemo_telegraf_listener
command: sh -c "cd /telegraf-listener && sleep 50 && node index.js"
restart: unless-stopped
Expand Down
1 change: 1 addition & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ To provide an easy to use, fully-featured, scalable, and portable SCADA/IIoT-I4.
- [ ] Siemens S7
- [ ] BACNET
- [x] I104M (legacy adapter for some OSHMI drivers)
- [x] ONVIF Camera control and streaming

## Features Roadmap

Expand Down
3 changes: 3 additions & 0 deletions platform-windows/buildupd.bat
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@ call %NPM% update
cd %SRCPATH%\mongowr
call %NPM% i --package-lock-only
call %NPM% update
cd %SRCPATH%\camera-onvif
call %NPM% i --package-lock-only
call %NPM% update

cd %SRCPATH%\log-io\ui
call %NPM% i --package-lock-only
Expand Down
Loading