services: cad-agent-studio: build: context: . dockerfile: Dockerfile container_name: cad-agent-studio restart: unless-stopped environment: NODE_ENV: production PORT: 3000 DEEPSEEK_API_KEY: ${DEEPSEEK_API_KEY} CAD_AGENT_STUDIO_ROOT: /app/cad-agent-studio CAD_ENGINE_ROOT: /app/text-to-cad CAD_AGENT_STUDIO_CONFIG: /app/cad-agent-studio/config/llm.config.yaml PYTHONPATH: /app/text-to-cad/packages/cadpy/src ports: - "127.0.0.1:53821:3000" volumes: - ./cad-agent-studio/models/agent-studio:/app/cad-agent-studio/models/agent-studio - ./cad-agent-studio/config/llm.config.yaml:/app/cad-agent-studio/config/llm.config.yaml:ro