forked from DeStep3000/hse_dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
40 lines (39 loc) · 1.11 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
40 lines (39 loc) · 1.11 KB
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
34
35
36
37
38
39
40
services:
app:
build:
context: .
dockerfile: Dockerfile
image: chatbot-dashboard:dev
container_name: chatbot-dashboard-dev
working_dir: /app
ports:
- "8501:8501"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
- TZ=Europe/Moscow
- START_FROM=2025-08
- DISABLE_INTERNAL_PARSER=1
# - FORCE_REPARSE=true # <-- включать только при необходимости полного перерасчёта
command: >
bash -c "
uv sync &&
uv run streamlit run main.py --server.port=8501 --server.address=0.0.0.0 --server.runOnSave true
"
parser:
image: chatbot-dashboard:dev
container_name: chatbot-dashboard-parser-dev
working_dir: /app
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
- TZ=Europe/Moscow
- START_FROM=2025-08
# - FORCE_REPARSE=true # <-- включать только при необходимости полного перерасчёта
command: >
bash -c "
uv sync &&
uv run python parser_worker.py
"