Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,3 @@ COPY . .

# Create necessary directories
RUN mkdir -p output

# Expose port for FastAPI
EXPOSE 8000

# Add entry point for FastAPI
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
11 changes: 4 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ services:
- LLM_EMBED_SIZE=${LLM_EMBED_SIZE:-768}
- QDRANT_HOST=qdrant
- QDRANT_PORT=6333
command: uvicorn app.main:app --host 0.0.0.0 --port 8000
depends_on:
- qdrant

mcp-server:
build:
context: .
dockerfile: Dockerfile
build: .
environment:
- MCP_TRANSPORT=sse
- MCP_HOST=0.0.0.0
Expand All @@ -36,9 +35,7 @@ services:
- qdrant

mcp-proxy:
build:
context: .
dockerfile: Dockerfile
build: .
ports:
- "3000:3000"
command: mcp-proxy http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
Expand All @@ -53,4 +50,4 @@ services:
ports:
- "6333:6333"
volumes:
- ./qdrant_data:/qdrant/storage
- ./qdrant_data:/qdrant/storage
Loading