Commit b98334a
fix(docker): fix build context, DB URL absolute path, and stale repo references
* fix(docker): correct DB URL path and invalid COPY shell redirect
- REPOWISE_DB_URL used 3 slashes (sqlite+aiosqlite:///data/wiki.db),
which SQLite interprets as a relative path "data/wiki.db" relative to
the process CWD. Changed to 4 slashes (////data/wiki.db) so the path
is the absolute /data/wiki.db that the volume mount expects.
- Remove `2>/dev/null || true` from the COPY instruction — Dockerfile
COPY does not support shell redirection; this silently failed to make
the instruction optional and was dead syntax.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix(docker): fix build context, DB URL path, and stale repo references
- Dockerfile header comment: update build command to use -f docker/Dockerfile
- docker-compose.yml: set build context to project root (context: ..,
dockerfile: docker/Dockerfile) so COPY paths to packages/ resolve correctly;
also fix REPOWISE_DB_URL to use 4 slashes (absolute /data/wiki.db path)
- docker/README.md: update build command and fix default DB URL in table
- docs/QUICKSTART.md, docs/USER_GUIDE.md: replace remote-URL docker build with
git clone + local build (-f docker/Dockerfile), update repo URL from
RaghavChamadiya/repowise to repowise-dev/repowise, add -f flag to
docker compose command
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent 85991d0 commit b98334a
5 files changed
Lines changed: 19 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
| 51 | + | |
52 | 52 | | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
| 14 | + | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
| |||
36 | 37 | | |
37 | 38 | | |
38 | 39 | | |
39 | | - | |
| 40 | + | |
40 | 41 | | |
41 | 42 | | |
42 | 43 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
4 | 6 | | |
5 | 7 | | |
6 | 8 | | |
7 | 9 | | |
8 | 10 | | |
9 | 11 | | |
10 | 12 | | |
11 | | - | |
| 13 | + | |
12 | 14 | | |
13 | 15 | | |
14 | 16 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
114 | 116 | | |
115 | 117 | | |
116 | 118 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
565 | 565 | | |
566 | 566 | | |
567 | 567 | | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
568 | 571 | | |
569 | | - | |
| 572 | + | |
570 | 573 | | |
571 | 574 | | |
572 | 575 | | |
| |||
579 | 582 | | |
580 | 583 | | |
581 | 584 | | |
582 | | - | |
| 585 | + | |
583 | 586 | | |
584 | 587 | | |
585 | 588 | | |
586 | | - | |
| 589 | + | |
587 | 590 | | |
588 | 591 | | |
589 | 592 | | |
| |||
0 commit comments