Files
docker-compose-files/archive/nodered/docker-compose.yaml
T
2025-12-22 13:22:11 +01:00

20 lines
500 B
YAML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
nodered:
image: nodered/node-red:latest
container_name: nodered
deploy:
resources:
limits:
memory: 256M
# dns:
# - 8.8.8.8 #sonst lassen sich Erweiterungen nicht installieren
restart: unless-stopped
user: 1000:1000 # gleiche UID/GID wie auf dem Host
ports:
- 9880:1880 # NodeRED UI
volumes:
- ./data:/data # Persistente Flows
environment:
- NODE_OPTIONS=--max_old_space_size=256 # optional
networks: {}