added dedup tools to settings. first pass of mass tag editting to gallery view.

This commit is contained in:
Bryan Van Deusen
2026-01-20 23:45:54 -05:00
parent 87bcb633f6
commit ede1457abc
10 changed files with 1411 additions and 182 deletions
+1 -5
View File
@@ -13,7 +13,7 @@ services:
retries: 5
restart: unless-stopped
# PostgreSQL database (production-ready)
# PostgreSQL database
postgres:
image: postgres:16-alpine
environment:
@@ -35,7 +35,6 @@ services:
ports:
- "5000:5000"
environment:
- DB_TYPE=postgresql
- DB_USER=${DB_USER:-imagerepo}
- DB_PASS=${DB_PASS:-postgres}
- DB_HOST=postgres
@@ -44,7 +43,6 @@ services:
- CELERY_BROKER_URL=redis://redis:6379/0
- CELERY_RESULT_BACKEND=redis://redis:6379/0
volumes:
- ./imagerepo/db/:/db # Legacy SQLite path (not used with PostgreSQL)
- ./imagerepo/images:/images
- ./import:/import
- ./migrations:/app/migrations # For dev
@@ -60,7 +58,6 @@ services:
build: .
command: celery -A app.celery_app:celery worker --loglevel=info -Q scan,import,thumbnail,sidecar,default --concurrency=${CELERY_WORKER_CONCURRENCY:-2}
environment:
- DB_TYPE=postgresql
- DB_USER=${DB_USER:-imagerepo}
- DB_PASS=${DB_PASS:-postgres}
- DB_HOST=postgres
@@ -84,7 +81,6 @@ services:
build: .
command: celery -A app.celery_app:celery beat --loglevel=info
environment:
- DB_TYPE=postgresql
- DB_USER=${DB_USER:-imagerepo}
- DB_PASS=${DB_PASS:-postgres}
- DB_HOST=postgres