Difference between revisions of "Home Automation/Hass with Dockerfile"

From srakrn | Wiki
Jump to navigation Jump to search
 
Line 45: Line 45:
 
     volumes:
 
     volumes:
 
       - nodered:/data
 
       - nodered:/data
 +
</pre>
 +
 +
Then expose with Cloudflare Zero Trust:
 +
 +
<pre>
 +
version: '3'
 +
services:
 +
  cftunnel:
 +
    image: cloudflare/cloudflared
 +
    restart: unless-stopped
 +
    command: tunnel run
 +
    environment:
 +
      - TUNNEL_TOKEN=${TUNNEL_TOKEN}
 +
    network_mode: "host"
 
</pre>
 
</pre>

Latest revision as of 13:19, 25 April 2025

Just replace Node-RED image with the vanilla one if you are not installing extra NPM libs:

version: '3.2'

volumes:
  zigbee2mqtt:
  mosquitto:
  hass:
  nodered:
  hass_media:
    
services:
  mosquitto:
    image: eclipse-mosquitto:2.0.18
    restart: unless-stopped
    network_mode: host
    volumes:
      - mosquitto:/mosquitto/config
  zigbee2mqtt:
    image: koenkk/zigbee2mqtt:2.2.1
    volumes:
      - zigbee2mqtt:/app/data
      - /run/udev:/run/udev:ro
    devices:
      - /dev/serial/by-id/usb-1a86_USB_Single_Serial_5322028960-if00:/dev/ttyACM0
    restart: unless-stopped
    network_mode: host
    privileged: true
    environment:
      - TZ
  hass:
    image: homeassistant/home-assistant:2025.3.2
    restart: unless-stopped
    network_mode: host
    volumes:
      - hass:/config
      - /etc/localtime:/etc/localtime
      - /run/dbus:/run/debus:ro
      - hass_media:/media
  node-red:
    image: srakrn/node-red-with-modules:20250420-it1
    restart: unless-stopped
    network_mode: host
    volumes:
      - nodered:/data

Then expose with Cloudflare Zero Trust:

version: '3'
services:
  cftunnel:
    image: cloudflare/cloudflared
    restart: unless-stopped
    command: tunnel run
    environment:
      - TUNNEL_TOKEN=${TUNNEL_TOKEN}
    network_mode: "host"