Skip to content
Open
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
19 changes: 10 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
version: "3"
version: "3.8" # Use a more specific version for better compatibility

services:
llm-answer-engine:
build: .
container_name: llm-answer-engine
environment:
- OPENAI_API_KEY=your_openai_api_key
- GROQ_API_KEY=your_groq_api_key
- BRAVE_SEARCH_API_KEY=your_brave_search_api_key
- SERPER_API=your_serper_api_key
# uncomment the following to change the default config (ollama, etc)
# volumes:
# - $PWD/app/config.tsx:/home/node/app/app/config.tsx:ro
OPENAI_API_KEY: your_openai_api_key
GROQ_API_KEY: your_groq_api_key
BRAVE_SEARCH_API_KEY: your_brave_search_api_key
SERPER_API: your_serper_api_key
ports:
- 3000:3000
- "3000:3000"
# volumes:
# - ./app/config.tsx:/home/node/app/app/config.tsx:ro # Uncomment and update path if needed