MQTT Home Emulation
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

docker-compose.yml 345B

123456789101112131415161718192021
  1. version: '3'
  2. services:
  3. my_nodered:
  4. restart: always
  5. image: nodered/node-red:latest
  6. container_name: nodered
  7. depends_on:
  8. - mqtt
  9. network_mode: host
  10. volumes:
  11. - ./nodered:/data
  12. mqtt:
  13. build: mqtt
  14. restart: always
  15. ports:
  16. - "1883:1883"
  17. - "9001:9001"
  18. volumes:
  19. - ./mqtt:/mosquitto