Files
picpeak/docker-compose.override.yml.example
paul 8a0a4436b0
Mirror to GitHub / mirror (push) Successful in 38s
Test and Lint / backend-test (push) Successful in 1m41s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m21s
Version and Release / version-bump (push) Successful in 48s
Version and Release / trigger-drone (push) Has been skipped
Fix migration require paths after reorganization
- Updated all core migrations to use ../../src/ instead of ../src/
- Updated legacy migrations with the same path fix
- This fixes MODULE_NOT_FOUND errors during deployment

The error occurred because migrations were moved one level deeper
into core/ and legacy/ subdirectories without updating the relative
paths to the source files.
2025-07-25 11:09:58 +02:00

51 lines
1.1 KiB
Plaintext

# docker-compose.override.yml.example
#
# Copy this file to docker-compose.override.yml for local production customizations
# docker-compose.override.yml is git-ignored and will be automatically loaded by Docker Compose
#
# Example customizations:
version: '3.8'
services:
# Example: Expose backend port for debugging
# backend:
# ports:
# - "3001:3001"
# Example: Expose database port for local tools
# db:
# ports:
# - "5432:5432"
# Example: Custom nginx ports
# nginx:
# ports:
# - "8080:80"
# - "8443:443"
# Example: Enable Umami web interface
# umami:
# ports:
# - "3000:3000"
# Example: Use different storage paths
# backend:
# volumes:
# - /mnt/photos:/app/storage
# - /mnt/data:/app/data
# Example: Development-like setup with code mounting
# backend:
# volumes:
# - ./backend:/app
# - /app/node_modules
# command: npm run dev
# Example: Add Mailhog for email testing
# mailhog:
# image: mailhog/mailhog:latest
# ports:
# - "1025:1025"
# - "8025:8025"
# restart: unless-stopped