From 503f959a39f2cd209f2114e27967036d81289ac0 Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 22 Mar 2026 11:29:08 +0100 Subject: [PATCH] Remove local data bind mount from cron service All COT data (database and downloaded HTML files) is stored on the cot_data Docker volume via DB_PATH=/data/cot.db. The ./data bind mount was redundant and could leak local files into the container. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 34f3d9c..7534f66 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,6 @@ services: container_name: cot_cron volumes: - cot_data:/data - - ./data:/app/data environment: - DB_PATH=/data/cot.db command: /app/scripts/cron_entrypoint.sh