https://github.com/johnf/btmon-influx
https://github.com/johnf/btmon-influx
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnf/btmon-influx
- Owner: johnf
- Created: 2020-10-13T10:13:26.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-13T10:38:40.000Z (over 5 years ago)
- Last Synced: 2025-01-23T20:14:28.470Z (over 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# btmon.py with influx
Docker image for btmon.py
## Config
Map your btmon.cfg into the volume in /etc e.g.
``` bash
docker run -it \
-v $(pwd)/btmon.cfg:/etc/btmon.cfg \
btmon-influxdb
```
## TODO
* Support command line options
## Development
``` bash
# Build
docker build -t btmon-influxdb .
# Test
docker run -it \
-v btmon.cfg:/etc/btmon.cfg \
--device=/dev/ttyUSB0:/dev/ttyUSB0 \
btmon-influxdb
```
## Release
``` bash
# Update the change log
vi CHANGELOG.md
# Create a release
hub release create --browse v1.0.0
# Import the changelog
:r CHANGELOG.md
# Check Github Actions
```