@5minds/node-red-contrib-processcube-elasticsearch 0.4.0-feature-5cd432-m692xd6s → 0.4.0-feature-ff0780-m6aq8fv2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,9 +5,10 @@
5
5
  "private": true,
6
6
  "dependencies": {
7
7
  "@flowfuse/node-red-dashboard": "1.22.0",
8
- "passport-oauth2": "*",
8
+ "do-red": "~1.0.7",
9
9
  "jsonwebtoken": "*",
10
10
  "jwks-rsa": "*",
11
- "node-red-contrib-oauth2": "*"
11
+ "node-red-contrib-oauth2": "*",
12
+ "passport-oauth2": "*"
12
13
  }
13
- }
14
+ }
package/Dockerfile CHANGED
@@ -9,6 +9,9 @@ RUN cd /package_src/ && npm install
9
9
 
10
10
  RUN npm install /package_src/
11
11
 
12
+ # test pckages
13
+ RUN npm install do-red
14
+
12
15
  # defaults
13
16
  USER node-red
14
17
 
@@ -18,7 +18,7 @@ services:
18
18
  - ./.processcube/nodered:/data
19
19
 
20
20
  elasticsearch:
21
- image: docker.elastic.co/elasticsearch/elasticsearch:8.10.1
21
+ image: elasticsearch:8.16.3
22
22
  container_name: elasticsearch
23
23
  environment:
24
24
  - discovery.type=single-node
@@ -33,6 +33,16 @@ services:
33
33
  - es_data:/usr/share/elasticsearch/data
34
34
  restart: always
35
35
 
36
+ kibana:
37
+ image: kibana:8.16.3
38
+ container_name: kibana
39
+ environment:
40
+ - ELASTICSEARCH_HOSTS=http://elasticsearch:9200
41
+ ports:
42
+ - "5601:5601"
43
+ depends_on:
44
+ - elasticsearch
45
+
36
46
  volumes:
37
47
  es_data:
38
48
  driver: local
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@5minds/node-red-contrib-processcube-elasticsearch",
3
- "version": "0.4.0-feature-5cd432-m692xd6s",
3
+ "version": "0.4.0-feature-ff0780-m6aq8fv2",
4
4
  "license": "MIT",
5
5
  "description": "Node-RED nodes for Elasticsearch",
6
6
  "scripts": {