Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 621 Bytes

README-Docker.md

File metadata and controls

26 lines (18 loc) · 621 Bytes

MqttAlerter Docker Container

Containerized mqttAlerter.js program.

  1. Buld the Container. I have included my own build script, but use what works for you.
# Bump version number & build
VERSION=$(cat VERSION | perl -pe 's/^((\d+\.)*)(\d+)(.*)$/$1.($3+1).$4/e' | tee VERSION)
docker build -t jdallen/mqttalerter:$VERSION -t jdallen/mqttalerter:latest .
  1. Run the Container.
docker run -d --restart=always \
  --name=mqttalerter \
  --volume /root/Docker/mqttAlerter:/mqtt/config \
  jdallen/mqttalerter:latest

The config.json file goes into your volume directory.