From f601c2030e82a8b4440f3b8f45a0240ccbf8f9a8 Mon Sep 17 00:00:00 2001 From: "Christoph K." Date: Mon, 23 Mar 2026 20:31:41 +0100 Subject: [PATCH] Switch Docker volume to bind mount at /home/christoph/fitnesspad Makes the database directly accessible on the host filesystem instead of an opaque Docker volume. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 01cfa31..83023db 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,8 +4,5 @@ services: ports: - "8090:8090" volumes: - - db-data:/data + - /home/christoph/fitnesspad:/data restart: unless-stopped - -volumes: - db-data: