Spaces:
Running
Running
Delete docker-compose.yml
Browse files- docker-compose.yml +0 -25
docker-compose.yml
DELETED
|
@@ -1,25 +0,0 @@
|
|
| 1 |
-
version: '3.8'
|
| 2 |
-
|
| 3 |
-
services:
|
| 4 |
-
backend:
|
| 5 |
-
build:
|
| 6 |
-
context: .
|
| 7 |
-
dockerfile: Dockerfile.backend
|
| 8 |
-
ports:
|
| 9 |
-
- "8000:8000"
|
| 10 |
-
volumes:
|
| 11 |
-
- ./vectorstore:/app/vectorstore
|
| 12 |
-
- ./raw_documents:/app/raw_documents
|
| 13 |
-
environment:
|
| 14 |
-
- GROQ_API_KEY=${GROQ_API_KEY:-}
|
| 15 |
-
|
| 16 |
-
frontend:
|
| 17 |
-
build:
|
| 18 |
-
context: .
|
| 19 |
-
dockerfile: Dockerfile.frontend
|
| 20 |
-
ports:
|
| 21 |
-
- "8501:8501"
|
| 22 |
-
environment:
|
| 23 |
-
- API_URL=http://backend:8000
|
| 24 |
-
depends_on:
|
| 25 |
-
- backend
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|