Good morning,
I've cruised this and other forums for resources but can't seem to get un-stuck. When Venus OS is loaded to the Pi it works fine, but I'm hoping to use the Pi for more than just that purpose, so I'm trying to use the docker container with Grafana.
The containers install fine, but no measurements are picked up:
When I run cat /dev/ttyUSB0 I get this result, so it looks like the MPPT 75|15 is outputting as it should:
I've tried a few options but none seem to achieve the desired effect:
The log isn't reporting any errors, but when debug us turned on, it looks like its rapidly connecting and closing connections through the USB cable.
Any advice would be greatly appreciated.
Here's my .yaml file:
version: '3.4'
services:
server:
image: "victronenergy/venus-docker-server:armhf-latest"
ports:
- "8088:8088"
volumes:
- "config-storage:/config"
restart: always
upnp:
image: "victronenergy/venus-docker-upnp:armhf-latest"
network_mode: host
restart: always
influxdb:
image: "influxdb:1.7"
ports:
- "8086:8086"
volumes:
- "influxdb-storage:/var/lib/influxdb"
environment:
- INFLUXDB_HTTP_LOG_ENABLED=false
restart: always
graphing:
image: "victronenergy/venus-docker-grafana:armhf-2.0.0"
volumes:
- "grafana-storage:/var/lib/grafana"
ports:
- "3000:3000"
restart: always
volumes:
influxdb-storage:
grafana-storage:
config-storage: