-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (32 loc) · 947 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
33 lines (32 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
services:
api:
build:
context: .
dockerfile: apps/api/Dockerfile
ports:
- "127.0.0.1:8001:8001"
environment:
- API_HOST=0.0.0.0
- API_PORT=8001
- API_CORS_ORIGINS=http://localhost:3000
- STORAGE_DIR=/data/storage
- SCOPUS_API_KEY=${SCOPUS_API_KEY:-}
- SEMANTIC_SCHOLAR_API_KEY=${SEMANTIC_SCHOLAR_API_KEY:-}
- UNPAYWALL_EMAIL=${UNPAYWALL_EMAIL:-}
- CROSSREF_EMAIL=${CROSSREF_EMAIL:-}
- DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-}
- DEEPSEEK_MODEL=${DEEPSEEK_MODEL:-deepseek-chat}
- DEEPSEEK_BASE_URL=${DEEPSEEK_BASE_URL:-https://api.deepseek.com}
- DISAMBIGUATION_ENABLED=${DISAMBIGUATION_ENABLED:-true}
volumes:
- ./data:/data
web:
build:
context: .
dockerfile: apps/web/Dockerfile
ports:
- "127.0.0.1:3000:3000"
environment:
- NEXT_PUBLIC_API_BASE=http://localhost:8001
depends_on:
- api