assistance-engine/docker-compose.yaml

22 lines
609 B
YAML

version: '3.8'
services:
brunix-engine:
build: .
container_name: brunix-assistance-engine
ports:
- "50052:50051"
environment:
- ELASTICSEARCH_URL=http://host.docker.internal:9200
- DATABASE_URL=postgresql://postgres:brunix_pass@host.docker.internal:5432/postgres
- LANGFUSE_HOST=http://45.77.119.180
- LANGFUSE_PUBLIC_KEY=${LANGFUSE_PUBLIC_KEY}
- LANGFUSE_SECRET_KEY=${LANGFUSE_SECRET_KEY}
- LLM_BASE_URL=http://host.docker.internal:11434
- OPENAI_API_KEY=${OPENAI_API_KEY}
extra_hosts:
- "host.docker.internal:host-gateway"