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

Forward data from logger to dockerized Node Red #8

Closed
ilexpl01 opened this issue Oct 8, 2022 · 2 comments
Closed

Forward data from logger to dockerized Node Red #8

ilexpl01 opened this issue Oct 8, 2022 · 2 comments
Labels
question Further information is requested

Comments

@ilexpl01
Copy link

ilexpl01 commented Oct 8, 2022

Hi,

My Node Red is running as docker on my Synology NAS. Only single TCP port 1880 is exposed.

Can I get an advise how to forward port 10000 to NR ?

BR
Mikolaj

@serek4
Copy link
Owner

serek4 commented Oct 9, 2022

simply add port 10000:10000 TCP to your docker container and make sure it is not blocked by firewall

this is my docker compose for example

services:
  nodered:
    container_name: nodered
    image: nodered/node-red:latest-18
    restart: unless-stopped
    ports:
      - "1880:1880"
      - "10000:10000"
    volumes:
      - ./data:/data
    environment:
      - TZ=Europe/Warsaw

@ilexpl01
Copy link
Author

ilexpl01 commented Oct 9, 2022 via email

@serek4 serek4 added the question Further information is requested label Oct 10, 2022
@serek4 serek4 closed this as completed Oct 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants