From 5e4be0c2791d22ac3c96dffd1d4efbfbd0c0574d Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 5 Feb 2026 21:55:44 +0000 Subject: [PATCH] Enable persistent data volume mount for Docker services Uncomment and enable the ./data:/app/data volume mount on both the basic and history service profiles. This persists decoded weather satellite images, the SQLite database, and other data across container rebuilds. Critical for Docker-only deployments. https://claude.ai/code/session_01FjLTkyELaqh27U1wEXngFQ --- docker-compose.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ba4ba49..4039f15 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,9 +20,9 @@ services: # USB device mapping for all USB devices devices: - /dev/bus/usb:/dev/bus/usb - # volumes: - # Persist data directory - # - ./data:/app/data + volumes: + # Persist decoded images and database across container rebuilds + - ./data:/app/data # Optional: mount logs directory # - ./logs:/app/logs environment: @@ -67,6 +67,8 @@ services: # USB device mapping for all USB devices devices: - /dev/bus/usb:/dev/bus/usb + volumes: + - ./data:/app/data environment: - INTERCEPT_HOST=0.0.0.0 - INTERCEPT_PORT=5050