Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

> docker build -t jmehan/homebridge .

Code Block
titleDockerfile
FROM oznu/homebridge

RUN npm install -g homebridge-nest
RUN npm install -g homebridge-sonoff-tasmota-http
RUN npm install -g homebridge-sonos
RUN npm install -g homebridge-http-temperature
RUN npm install -g homebridge-mqttthing
RUN npm install -g homebridge-cmd4
RUN mkdir ~/.homebridge
RUN mkdir ~/.homebridge/Cmd4Scripts
RUN cp /usr/local/lib/node_modules/homebridge-cmd4/Extras/Cmd4Scripts/State.js ~/.homebridge/Cmd4Scripts
RUN chmod 700 ~/.homebridge/Cmd4Scripts/State.js
RUN npm install -g homebridge-http-webhooks

...