-
Notifications
You must be signed in to change notification settings - Fork 203
Description
Hi,
I installed the docker version of openManus (nice work, by the way) and added some environment variables to the docker-compose.yml:
version: '3.8'
services:
unified:
build:
context: .
dockerfile: docker/unified/Dockerfile
ports:
- "8000:8000"
environment:
- PYTHONPATH=/app
- FLASK_APP=src/server.py
- FLASK_ENV=development
- REASONING_MODEL=deepseek-r1
- REASONING_API_KEY=
- REASONING_BASE_URL=https://api.deepseek.com
- BASIC_MODEL=gemini-2.0-flash
- BASIC_API_KEY=
- BASIC_BASE_URL=https://generativelanguage.googleapis.com/v1beta/
frontend:
build:
context: .
dockerfile: docker/frontend/Dockerfile
ports:
- "3000:3000"
depends_on:
- unified
When I do
curl -X POST -H "Content-Type: application/json" -d '{"task": "Analyze Tesla stock trends"}' http://localhost:8000/task
I get {"detail":"Not Found"}
Same with GET status
When I try to access the web ui nothing happens at all. Am I missing some configuration stuff?
Best Regards
Peter