-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (27 loc) · 937 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (27 loc) · 937 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
# PodLens — run UI + API together (single container).
#
# docker compose up --build
# Open http://localhost:8080
#
# Optional: copy `.env.example` → `.env` in this folder. Compose reads `.env` for
# variable substitution and passes the values below into the container.
services:
podlens:
build: .
ports:
- "8080:8000"
environment:
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY:-}
UNSPLASH_ACCESS_KEY: ${UNSPLASH_ACCESS_KEY:-}
UNSPLASH_SECRET_KEY: ${UNSPLASH_SECRET_KEY:-}
ENTITY_BACKEND: ${ENTITY_BACKEND:-}
SPACY_MODEL: ${SPACY_MODEL:-}
WHISPER_MODEL: ${WHISPER_MODEL:-base}
CLAUDE_MODEL: ${CLAUDE_MODEL:-}
CLAUDE_ENTITY_BATCH: ${CLAUDE_ENTITY_BATCH:-}
NOMINATIM_USER_AGENT: ${NOMINATIM_USER_AGENT:-}
CORS_EXTRA_ORIGINS: ${CORS_EXTRA_ORIGINS:-http://localhost:8080,http://127.0.0.1:8080}
volumes:
- podlens-data:/data
volumes:
podlens-data: