llm-web-scrapper / docker-compose.yml
frkhan's picture
- Added docstring for the whole project
9536c67
raw
history blame
809 Bytes
version: '3.8'
services:
semantic-search-app:
build:
context: .
dockerfile: Dockerfile
container_name: llm-web-scrapper
ports:
- "12200:7860"
environment:
- NVIDIA_API_KEY=${NVIDIA_API_KEY} # Load this key from .env or manually add the secret
- GOOGLE_API_KEY=${GOOGLE_API_KEY} # Load this key from .env or manually add the secret
- FIRECRAWL_API_KEY=${FIRECRAWL_API_KEY} # Load this key from .env in local/dev environment
- LANGFUSE_PUBLIC_KEY=${LANGFUSE_PUBLIC_KEY} # Load this key from .env or manually add the secret
- LANGFUSE_SECRET_KEY=${LANGFUSE_SECRET_KEY} # Load this key from .env or manually add the secret
- LANGFUSE_HOST=${LANGFUSE_HOST} # Load this key from .env or manually add the secret
restart: unless-stopped