Setup a clean raspberry4
Installed docker
Created a node-red container with docker compose
Node-red runs fine in the container
Trying to use palette to install some nodes.
Get the following error after clicking manage palette
Failed to load node catalogue.
Check the browser console for more information
In the console i see the following
Error loading catalog https://catalogue.nodered.org/catalogue.json :
(anonymous) @ red.min.js?v=:18
Failed to load resource: net::ERR_BLOCKED_BY_CLIENT
DevTools failed to load source map: Could not load content for http://192.168.1.200:1880/vendor/purify.min.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
When I go into the node-red container and do a ping to the catalogue adress and can reach the adress
I can reach the internet with the http request node in node red.
Question
Is there somewhere a (docker) parameter that I should use?
It is a clean container, nothing changed.
My Install:
Raspberry 4
linux aarch64 Debian GNU/Linux 11 (bullseye)
Kernel Version 6.1.21-v8+
Node-red 3.1.0: Milestone Release
Docker compose file
version: "3.7"
services:
node-red:
image: nodered/node-red:latest
environment:
- TZ=Europe/Amsterdam
ports:
- "1880:1880"
networks:
- node-red-net
volumes:
- /home/pi/dockerdata/nodered:/data
volumes:
node-red-data:
networks:
node-red-net: