From 34e754fb7bb392bb6aee094f0b2bfb28785c5b25 Mon Sep 17 00:00:00 2001 From: Bram Kelchtermans Date: Wed, 30 Apr 2025 20:28:24 +0200 Subject: [PATCH] try something --- Dockers/puppeteer-api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockers/puppeteer-api/main.py b/Dockers/puppeteer-api/main.py index 7f5e20c..013beeb 100644 --- a/Dockers/puppeteer-api/main.py +++ b/Dockers/puppeteer-api/main.py @@ -54,7 +54,7 @@ def init_db(): except sqlite3.OperationalError as e: print(f"Error initializing database: {e}") # Fallback to using a local database file if the mounted volume has permission issues - db_path = 'cache.db' + db_path = './db/cache.db' print(f"Falling back to local database file: {db_path}") conn = sqlite3.connect(db_path) cursor = conn.cursor()