From f9ae6687e373e0c24ad3cfd16f01f7c41818afe2 Mon Sep 17 00:00:00 2001 From: Preston Hunter Date: Thu, 13 Nov 2025 21:54:55 -0500 Subject: [PATCH] build(docker-compose): Explicitly set local driver for teslamate-db volume Adds `driver: local` to the `teslamate-db` volume definition in `docker-compose.yml`. This change explicitly declares the volume driver, improving clarity and ensuring consistent behavior for the bind mount. While `local` is often the default when `driver_opts` are used for bind mounts, explicit declaration removes ambiguity and makes the configuration more robust. --- teslamate/docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/teslamate/docker-compose.yml b/teslamate/docker-compose.yml index 38426ab..f0ee440 100644 --- a/teslamate/docker-compose.yml +++ b/teslamate/docker-compose.yml @@ -79,6 +79,7 @@ networks: volumes: teslamate-db: + driver: local driver_opts: type: none device: /mnt/docker/home/teslamate/data