From cdda70988664a177b351abc6a259ec39664d17ff Mon Sep 17 00:00:00 2001 From: Paul Nothaft Date: Sat, 17 Jan 2026 15:48:15 +0100 Subject: [PATCH] fix: add STORAGE_PATH to production docker-compose Ensures STORAGE_PATH environment variable is explicitly set in production deployments to prevent path resolution issues when serving thumbnails and other storage-related operations. --- docker-compose.production.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.production.yml b/docker-compose.production.yml index fc53952d..1bbfe487 100644 --- a/docker-compose.production.yml +++ b/docker-compose.production.yml @@ -46,6 +46,7 @@ services: - NODE_ENV=production - DB_HOST=${DB_HOST:-postgres} - REDIS_HOST=redis + - STORAGE_PATH=/app/storage - PHOTOS_DIR=/app/storage/events - PICPEAK_RELEASE_CHANNEL=${PICPEAK_CHANNEL:-stable} volumes: