Fix critical issue where `docker compose build` was failing with: "Module not found: Can't resolve '../prisma/client-generated'" Root cause: - Next.js build requires Prisma Client during webpack compilation - Prisma Client was not being generated before the Next.js build step Changes: 1. keep-notes/Dockerfile: - Add explicit `RUN npx prisma generate` in builder stage before `npm run build` - Ensures client-generated directory exists when Next.js compiles 2. keep-notes/package.json: - Update build script: "prisma generate && next build --webpack" - Double-protection: runs prisma generate both in Dockerfile and build script 3. docker-compose.yml: - Remove obsolete `version: '3.8'` attribute (deprecated in Docker Compose v2) Result: ✓ Docker build now completes successfully ✓ Prisma Client generated at ./prisma/client-generated ✓ Next.js webpack compilation finds the client module Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
88 lines
2.3 KiB
YAML
88 lines
2.3 KiB
YAML
services:
|
|
# ============================================
|
|
# keep-notes - Next.js Web Application
|
|
# ============================================
|
|
keep-notes:
|
|
build:
|
|
context: ./keep-notes
|
|
dockerfile: Dockerfile
|
|
container_name: memento-web
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- DATABASE_URL=file:/app/prisma/dev.db
|
|
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET:-changethisinproduction}
|
|
- NEXTAUTH_URL=${NEXTAUTH_URL:-http://localhost:3000}
|
|
- NODE_ENV=production
|
|
|
|
# Email Configuration (SMTP)
|
|
- SMTP_HOST=${SMTP_HOST}
|
|
- SMTP_PORT=${SMTP_PORT:-587}
|
|
- SMTP_USER=${SMTP_USER}
|
|
- SMTP_PASS=${SMTP_PASS}
|
|
- SMTP_FROM=${SMTP_FROM:-noreply@memento.app}
|
|
|
|
# AI Providers
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
- OLLAMA_API_URL=${OLLAMA_API_URL:-http://ollama:11434}
|
|
volumes:
|
|
- db-data:/app/prisma
|
|
- uploads-data:/app/public/uploads
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
networks:
|
|
- memento-network
|
|
|
|
# ============================================
|
|
# mcp-server - MCP Protocol Server
|
|
# ============================================
|
|
mcp-server:
|
|
build:
|
|
context: ./mcp-server
|
|
dockerfile: Dockerfile
|
|
container_name: memento-mcp
|
|
volumes:
|
|
- db-data:/app/db
|
|
depends_on:
|
|
- keep-notes
|
|
restart: unless-stopped
|
|
networks:
|
|
- memento-network
|
|
|
|
# ============================================
|
|
# Ollama - Local LLM Provider (Optional)
|
|
# ============================================
|
|
ollama:
|
|
image: ollama/ollama:latest
|
|
container_name: memento-ollama
|
|
ports:
|
|
- "11434:11434"
|
|
volumes:
|
|
- ollama-data:/root/.ollama
|
|
restart: unless-stopped
|
|
networks:
|
|
- memento-network
|
|
|
|
# ============================================
|
|
# Volumes - Data Persistence
|
|
# ============================================
|
|
volumes:
|
|
db-data:
|
|
driver: local
|
|
uploads-data:
|
|
driver: local
|
|
ollama-data:
|
|
driver: local
|
|
|
|
# ============================================
|
|
# Networks - Service Communication
|
|
# ============================================
|
|
networks:
|
|
memento-network:
|
|
driver: bridge
|