Added docker functionality.

This commit is contained in:
Aodhan
2025-06-25 22:26:49 +01:00
parent c5391a957d
commit 7bebc95c09
8 changed files with 126 additions and 11 deletions

View File

@@ -356,7 +356,9 @@ def sync_image_database() -> None:
# Now, parse and store prompt details for the new images
for row in rows:
rel_path, _, _, _, _, _, prompt = row
# row structure: (path, w, h, name, orientation, ts, prompt, nsfw_flag)
rel_path = row[0]
prompt = row[6]
if prompt:
parse_and_store_prompt_details(rel_path, prompt)