From 883d978afffbc970d3a509a973c83a1167d43e7b Mon Sep 17 00:00:00 2001 From: Preston Hunter Date: Thu, 13 Nov 2025 21:55:09 -0500 Subject: [PATCH] chore: Explicitly define local driver for Teslamate volumes Added `driver: local` to the `teslamate-grafana-data`, `mosquitto-conf`, and `mosquitto-data` volume definitions in `docker-compose.yml`. This change explicitly specifies the local volume driver for these bind-mounted volumes, improving clarity and ensuring consistent behavior within the Docker environment. --- teslamate/docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/teslamate/docker-compose.yml b/teslamate/docker-compose.yml index f0ee440..161c378 100644 --- a/teslamate/docker-compose.yml +++ b/teslamate/docker-compose.yml @@ -85,16 +85,19 @@ volumes: device: /mnt/docker/home/teslamate/data o: bind teslamate-grafana-data: + driver: local driver_opts: type: none device: /mnt/docker/home/teslamate/data o: bind mosquitto-conf: + driver: local driver_opts: type: none device: /mnt/docker/home/teslamate/data o: bind mosquitto-data: + driver: local driver_opts: type: none device: /mnt/docker/home/teslamate/data