Graham Garner

Results 60 comments of Graham Garner

I got this working changed `./services/nodered/Dockerfile` to: ``` FROM nodered/node-red:latest RUN for addonnodes in \ node-red-node-pi-gpiod \ node-red-dashboard \ node-red-contrib-influxdb \ ; do \ npm install ${addonnodes} ;\ done; USER...

I re-read you post from above, didnt realise you needed sudo to get the MAC information for security reasons the users in docker arent given sudo access. So running sudo...

the only way i can think to get around this is to write a script on the Pi (and place it on a cron job to execute every couple of...

I agree, doing that kind of defeats to object of containers I tried this. There is a node called "node-red-contrib-arp" once triggered it will return an array of all IP's...

I Paul its been a while but i do have a viable solution https://github.com/gcgarner/IOTstack/wiki/Node-RED#running-the-exec-node-against-the-host-pi you could outsource the nmap section of your script to the host Pi and output the...

The ssh-key should survive the down-up because the `ssh-keygen -f /data/ssh/nodered` put the key in the mapped volume directory and when you call the exec from nodered you call `ssh...

Thanks, I'll check the wiki and make sure it says you need to accept and add the key On Sat, 11 Jan 2020, 13:21 mane-wt, wrote: > Hi, I found...

Hi Paul I just uninstalled and reinstalled PiVPN with the standard `curl -L https://install.pivpn.io | bash` and i didn't encounter any errors. It could be because I had some residual...

@surak I followed your pivpn issue, I'm busy testing mine and i don't get the same output as you. My connection goes through and stays open. This is the third...

Hi Steven, running a containerized python script is reasonably straight forward. And it simplifies running a python script as a service. For the testing and development phase adding it to...