Skip to content

Commit a7dd7bf

Browse files
docs: point install instructions and compose images at the fork
Update the README/docs curl commands and the compose-file image references to this fork (raw.githubusercontent.com/InfiniteAvenger and ghcr.io/infiniteavenger/shelfmark[-lite]) so following the install steps deploys the fork rather than upstream. Upstream attribution links are intentionally preserved. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent c070bf2 commit a7dd7bf

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

compose/docker-compose.lite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
shelfmark-lite:
3-
image: ghcr.io/calibrain/shelfmark-lite:latest
3+
image: ghcr.io/infiniteavenger/shelfmark-lite:latest
44
container_name: shelfmark-lite
55
environment:
66
# EXT_BYPASSER_URL: http://flaresolverr:8191 #If using Flaresolverr

compose/docker-compose.tor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Routes all traffic through Tor - requires root startup
22
services:
33
shelfmark-tor:
4-
image: ghcr.io/calibrain/shelfmark:latest
4+
image: ghcr.io/infiniteavenger/shelfmark:latest
55
environment:
66
FLASK_PORT: 8084
77
USING_TOR: true

compose/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
shelfmark:
3-
image: ghcr.io/calibrain/shelfmark:latest
3+
image: ghcr.io/infiniteavenger/shelfmark:latest
44
container_name: shelfmark
55
environment:
66
PUID: 1000

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Example `docker-compose`:
3434
```yaml
3535
services:
3636
shelfmark:
37-
image: ghcr.io/calibrain/shelfmark:latest
37+
image: ghcr.io/infiniteavenger/shelfmark:latest
3838
volumes:
3939
- /path/to/config:/config
4040
- /path/to/books:/books

docs/custom-scripts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you run Shelfmark in Docker, the script must exist inside the container. The
2222
```yaml
2323
services:
2424
shelfmark:
25-
image: ghcr.io/calibrain/shelfmark:latest
25+
image: ghcr.io/infiniteavenger/shelfmark:latest
2626
volumes:
2727
- /path/to/your/scripts:/scripts:ro
2828
```

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Shelfmark is typically deployed with Docker Compose.
77
1. Download the compose file from the repository:
88

99
```bash
10-
curl -O https://raw.githubusercontent.com/calibrain/shelfmark/main/compose/docker-compose.yml
10+
curl -O https://raw.githubusercontent.com/InfiniteAvenger/shelfmark/main/compose/docker-compose.yml
1111
```
1212

1313
2. Start the service:

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ These build on Shelfmark's existing request and download systems; with all of th
6666

6767
1. Download the [docker-compose file](compose/docker-compose.yml):
6868
```bash
69-
curl -O https://raw.githubusercontent.com/calibrain/shelfmark/main/compose/docker-compose.yml
69+
curl -O https://raw.githubusercontent.com/InfiniteAvenger/shelfmark/main/compose/docker-compose.yml
7070
```
7171

7272
2. Start the service:
@@ -148,7 +148,7 @@ The full-featured image with all network capabilities included.
148148
#### Tor Routing
149149
Optional Tor support for network privacy:
150150
```bash
151-
curl -O https://raw.githubusercontent.com/calibrain/shelfmark/main/compose/docker-compose.tor.yml
151+
curl -O https://raw.githubusercontent.com/InfiniteAvenger/shelfmark/main/compose/docker-compose.tor.yml
152152
docker compose -f docker-compose.tor.yml up -d
153153
```
154154

@@ -166,7 +166,7 @@ A lighter image without the built-in browser automation. Ideal for:
166166
- **Audiobooks** - Using Shelfmark primarily for audiobooks
167167

168168
```bash
169-
curl -O https://raw.githubusercontent.com/calibrain/shelfmark/main/compose/docker-compose.lite.yml
169+
curl -O https://raw.githubusercontent.com/InfiniteAvenger/shelfmark/main/compose/docker-compose.lite.yml
170170
docker compose -f docker-compose.lite.yml up -d
171171
```
172172

0 commit comments

Comments
 (0)