Initial Commit

This commit is contained in:
kyy
2025-03-18 04:34:57 +00:00
commit a4981faeef
60 changed files with 2160 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
services:
autorag-dashboard:
build:
context: .
container_name: autorag-dashboard
environment:
- CUDA_VISIBLE_DEVICES=0
- OPENAI_API_KEY=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
- BOKEH_ALLOW_WS_ORIGIN=172.16.10.175:7690
volumes:
- ~/.cache/huggingface:/root/.cache/huggingface
- ./:/usr/src/app/
tty: true
working_dir: /usr/src/app
networks:
- autorag-dashboard_network
ports:
- "7690:7690"
networks:
autorag-dashboard_network:
driver: bridge