- Change main build to use Dockerfile.optimized (targets ~200MB image) - Add separate 'full' build job for development variant (2.6GB) - Update tagging strategy: 'latest' for optimized, 'full' suffix for full variant - Update documentation to reflect dual image strategy - Update docker-compose.yml with variant selection comment This provides users with two options: - Optimized (default): Pre-built database, minimal size, for production - Full: Complete n8n packages, dynamic scanning, for development 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
# docker-compose.yml
|
|
version: '3.8'
|
|
|
|
services:
|
|
n8n-mcp:
|
|
# Use 'latest' for optimized image (~200MB) or 'full' for development (2.6GB)
|
|
image: ghcr.io/czlonkowski/n8n-mcp:latest
|
|
container_name: n8n-mcp
|
|
restart: unless-stopped
|
|
|
|
# Environment configuration
|
|
environment:
|
|
# Mode configuration
|
|
MCP_MODE: ${MCP_MODE:-http}
|
|
AUTH_TOKEN: ${AUTH_TOKEN:?AUTH_TOKEN is required for HTTP mode}
|
|
|
|
# Application settings
|
|
NODE_ENV: ${NODE_ENV:-production}
|
|
LOG_LEVEL: ${LOG_LEVEL:-info}
|
|
PORT: ${PORT:-3000}
|
|
|
|
# Database
|
|
NODE_DB_PATH: ${NODE_DB_PATH:-/app/data/nodes.db}
|
|
REBUILD_ON_START: ${REBUILD_ON_START:-false}
|
|
|
|
# Volumes for persistence
|
|
volumes:
|
|
- n8n-mcp-data:/app/data
|
|
|
|
# Port mapping
|
|
ports:
|
|
- "${PORT:-3000}:3000"
|
|
|
|
# Resource limits
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512M
|
|
reservations:
|
|
memory: 256M
|
|
|
|
# Health check
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|
|
# Named volume for data persistence
|
|
volumes:
|
|
n8n-mcp-data:
|
|
driver: local |