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.
This commit is contained in:
Preston Hunter
2025-11-13 21:55:09 -05:00
parent f9ae6687e3
commit 883d978aff

View File

@@ -85,16 +85,19 @@ volumes:
device: /mnt/docker/home/teslamate/data device: /mnt/docker/home/teslamate/data
o: bind o: bind
teslamate-grafana-data: teslamate-grafana-data:
driver: local
driver_opts: driver_opts:
type: none type: none
device: /mnt/docker/home/teslamate/data device: /mnt/docker/home/teslamate/data
o: bind o: bind
mosquitto-conf: mosquitto-conf:
driver: local
driver_opts: driver_opts:
type: none type: none
device: /mnt/docker/home/teslamate/data device: /mnt/docker/home/teslamate/data
o: bind o: bind
mosquitto-data: mosquitto-data:
driver: local
driver_opts: driver_opts:
type: none type: none
device: /mnt/docker/home/teslamate/data device: /mnt/docker/home/teslamate/data