9d1a820295
- Create render-worker/ with Dockerfile (Ubuntu + cadquery + Blender via host mount) - Add render-worker/check_version.py: verifies Blender >= 5.0.1 at startup, Exit 1 on failure - Add render-worker/scripts/: blender_render.py, still_render.py, turntable_render.py - Create backend/app/services/render_blender.py: direct subprocess rendering - convert_step_to_stl() and export_per_part_stls() using cadquery - render_still(): STEP → STL → PNG via Blender subprocess - is_blender_available(): detects BLENDER_BIN env for render-worker context - Create backend/app/domains/rendering/tasks.py: render_still_task + render_turntable_task - Update step_processor.py: use subprocess path when BLENDER_BIN env is set (render-worker) - Update step_tasks.py: generate_stl_cache uses direct cadquery instead of HTTP - Remove blender-renderer and threejs-renderer from docker-compose.yml - Replace worker-thumbnail with render-worker (Ubuntu + cadquery + Blender mount) - Remove Docker SDK from backend Dockerfile (was only for flamenco scaling) - Update .env.example: BLENDER_VERSION=5.0.1 documented - Update celery_app.py: include domains.rendering.tasks in autodiscover Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
166 lines
5.0 KiB
YAML
166 lines
5.0 KiB
YAML
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
environment:
|
|
POSTGRES_DB: ${POSTGRES_DB:-schaeffler}
|
|
POSTGRES_USER: ${POSTGRES_USER:-schaeffler}
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-schaeffler}
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
ports:
|
|
- "5432:5432"
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-schaeffler}"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
ports:
|
|
- "6379:6379"
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
backend:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
command: /start.sh
|
|
environment:
|
|
- POSTGRES_DB=${POSTGRES_DB:-schaeffler}
|
|
- POSTGRES_USER=${POSTGRES_USER:-schaeffler}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-schaeffler}
|
|
- POSTGRES_HOST=postgres
|
|
- POSTGRES_PORT=5432
|
|
- REDIS_URL=${REDIS_URL:-redis://redis:6379/0}
|
|
- JWT_SECRET_KEY=${JWT_SECRET_KEY:-changeme-in-production}
|
|
- JWT_ALGORITHM=${JWT_ALGORITHM:-HS256}
|
|
- JWT_ACCESS_TOKEN_EXPIRE_MINUTES=${JWT_ACCESS_TOKEN_EXPIRE_MINUTES:-480}
|
|
- AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-}
|
|
- AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-}
|
|
- AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-gpt-4o}
|
|
- AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-2024-02-01}
|
|
- UPLOAD_DIR=/app/uploads
|
|
- MAX_UPLOAD_SIZE_MB=${MAX_UPLOAD_SIZE_MB:-500}
|
|
volumes:
|
|
- ./backend:/app
|
|
- uploads:/app/uploads
|
|
ports:
|
|
- "8888:8888"
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
|
|
worker:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
command: celery -A app.tasks.celery_app worker --loglevel=info -Q step_processing,ai_validation --concurrency=${CELERY_WORKER_CONCURRENCY:-8}
|
|
environment:
|
|
- POSTGRES_DB=${POSTGRES_DB:-schaeffler}
|
|
- POSTGRES_USER=${POSTGRES_USER:-schaeffler}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-schaeffler}
|
|
- POSTGRES_HOST=postgres
|
|
- POSTGRES_PORT=5432
|
|
- REDIS_URL=${REDIS_URL:-redis://redis:6379/0}
|
|
- JWT_SECRET_KEY=${JWT_SECRET_KEY:-changeme-in-production}
|
|
- AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-}
|
|
- AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-}
|
|
- AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-gpt-4o}
|
|
- AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-2024-02-01}
|
|
- UPLOAD_DIR=/app/uploads
|
|
- CELERY_WORKER_CONCURRENCY=${CELERY_WORKER_CONCURRENCY:-8}
|
|
volumes:
|
|
- ./backend:/app
|
|
- uploads:/app/uploads
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
|
|
render-worker:
|
|
build:
|
|
context: ./render-worker
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- BLENDER_VERSION=${BLENDER_VERSION:-5.0.1}
|
|
environment:
|
|
- POSTGRES_DB=${POSTGRES_DB:-schaeffler}
|
|
- POSTGRES_USER=${POSTGRES_USER:-schaeffler}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-schaeffler}
|
|
- POSTGRES_HOST=postgres
|
|
- POSTGRES_PORT=5432
|
|
- REDIS_URL=${REDIS_URL:-redis://redis:6379/0}
|
|
- JWT_SECRET_KEY=${JWT_SECRET_KEY:-changeme-in-production}
|
|
- UPLOAD_DIR=/app/uploads
|
|
- BLENDER_BIN=/opt/blender/blender
|
|
- RENDER_SCRIPTS_DIR=/render-scripts
|
|
volumes:
|
|
- ./backend:/app
|
|
- uploads:/app/uploads
|
|
- /opt/blender:/opt/blender:ro
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: 1
|
|
capabilities: [gpu, compute, utility, graphics]
|
|
|
|
beat:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
command: celery -A app.tasks.celery_app beat --loglevel=info
|
|
environment:
|
|
- POSTGRES_DB=${POSTGRES_DB:-schaeffler}
|
|
- POSTGRES_USER=${POSTGRES_USER:-schaeffler}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-schaeffler}
|
|
- POSTGRES_HOST=postgres
|
|
- POSTGRES_PORT=5432
|
|
- REDIS_URL=${REDIS_URL:-redis://redis:6379/0}
|
|
- JWT_SECRET_KEY=${JWT_SECRET_KEY:-changeme-in-production}
|
|
- AZURE_OPENAI_API_KEY=${AZURE_OPENAI_API_KEY:-}
|
|
- AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT:-}
|
|
- AZURE_OPENAI_DEPLOYMENT=${AZURE_OPENAI_DEPLOYMENT:-gpt-4o}
|
|
- AZURE_OPENAI_API_VERSION=${AZURE_OPENAI_API_VERSION:-2024-02-01}
|
|
- UPLOAD_DIR=/app/uploads
|
|
volumes:
|
|
- ./backend:/app
|
|
- uploads:/app/uploads
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
redis:
|
|
condition: service_healthy
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5173:5173"
|
|
environment:
|
|
- VITE_API_URL=http://backend:8888
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
depends_on:
|
|
- backend
|
|
|
|
volumes:
|
|
pgdata:
|
|
uploads:
|