Commit 6168c8b
committed
fix: pin image versions, fix DB credentials, add hf_models placeholder
- docker-compose.yml: pin postgres to v16 (postgres:latest is v18+
which changed data dir layout from /data to versioned subdir,
causing container exit code 1 on existing volumes)
- docker-compose.yml: inject AIRFLOW__DATABASE__SQL_ALCHEMY_CONN via
environment so password comes from .env at runtime instead of being
hardcoded in the Dockerfile; fix default password mismatch
(was 'airflow', now consistent with POSTGRES_PASSWORD default)
- airflow/Dockerfile: pin to apache/airflow:2.10.4 (was :latest);
remove hardcoded SQL_ALCHEMY_CONN — now injected by docker-compose
- streamlit_app/Dockerfile: add --start-period=30s to HEALTHCHECK
(Streamlit takes ~30s to boot; without it depends_on:healthy could
fail prematurely before the app is ready)
- hf_models/.gitkeep: track placeholder so the directory exists on
fresh clones — required by the text-completion-llm-service bind mount
- .gitignore: allow hf_models/.gitkeep (hf_models/* + !.gitkeep)
- Makefile: quickstart now runs mkdir -p hf_models to ensure the dir
exists before docker compose build
- README.md: fix Grafana credentials (was 'admin/admin', now points to
.env); add pinned versions to Tech Stack table1 parent e72d25d commit 6168c8b
7 files changed
Lines changed: 13 additions & 9 deletions
File tree
- airflow
- hf_models
- streamlit_app
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
| 34 | + | |
34 | 35 | | |
35 | 36 | | |
36 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
303 | 303 | | |
304 | 304 | | |
305 | 305 | | |
306 | | - | |
| 306 | + | |
307 | 307 | | |
308 | 308 | | |
309 | 309 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
2 | | - | |
| 1 | + | |
| 2 | + | |
3 | 3 | | |
4 | | - | |
5 | | - | |
| 4 | + | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| 27 | + | |
| 28 | + | |
27 | 29 | | |
28 | 30 | | |
29 | 31 | | |
| |||
Whitespace-only changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
0 commit comments