Hi there,
I installed FlowFuse according to official documentation using docker compose as the deployment model.
To install and configure DNSMasq, I use flowfuse ubuntu example:
sudo apt-get install dnsmasq
sudo echo “bind-interfaces” >> /etc/dnsmasq.conf
sudo echo “no-resolv” >> /etc/dnsmasq.conf
sudo echo “conf-dir=/etc/dnsmasq.d” >> /etc/dnsmasq.conf
sudo echo “address=/example.com/172.17.0.1” > /etc/dnsmasq.d/02-flowforge.conf
sudo service dnsmasq restart
sudo echo “DNS=127.0.0.1” >> /etc/systemd/resolved.conf
sudo echo “DOMAINS=~example.com” >> /etc/systemd/resolved.conf
sudo service systemd-resolved restart
Once DNS is well-configured, I download the github project and run ‘docker pull flowforge/node-red’ and ‘docker compose -p flowforge up -d’.
After signing up, when flowforge is opened in the browser http://forge.example.com/, I try to create/run an instance, but Node-RED is stopping for some reason.
Does anybody know how to fix it?
Thanks in advance!