Closed shleeable closed 4 years ago
@shleeable Nice thanks! I forgot to catch InfluxDB posts, was only catching Luftdaten posts.
I've now added a DEBUG
env var which only shows logging.info
if DEBUG=true.
To pull the new changes on your box:
# stash your Dockerfile edits
git stash
# pull new changes and init submodule again
git pull
git submodule update --init
# pop back your Dockerfile changes
git stash pop
# you might want to set DEBUG=false to only see warnings/errors
# then rebuild the container
docker build -t sighmon/enviroplus_exporter:v2 .
# stop your old one, and then run the new one
docker run -d --privileged -p 8000:8000 sighmon/enviroplus_exporter:v2
Updated, and it looks good.
Thanks!