Skip to content

Commit 9d174ba

Browse files
authored
chore: use ghcr.io instead of dockerhub as default (#2045)
Signed-off-by: Ludovic Ortega <[email protected]>
1 parent d5ff0c1 commit 9d174ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/getting-started/docker.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ docker run -d \
3838
-p 5055:5055 \
3939
-v /path/to/appdata/config:/app/config \
4040
--restart unless-stopped \
41-
fallenbagel/jellyseerr
41+
ghcr.io/fallenbagel/jellyseerr:latest
4242
```
4343

4444
The argument `-e PORT=5055` is optional.
@@ -62,7 +62,7 @@ docker stop jellyseerr && docker rm jellyseerr
6262
```
6363
Pull the latest image:
6464
```bash
65-
docker pull fallenbagel/jellyseerr
65+
docker pull ghcr.io/fallenbagel/jellyseerr:latest
6666
```
6767
Finally, run the container with the same parameters originally used to create the container:
6868
```bash
@@ -85,7 +85,7 @@ Define the `jellyseerr` service in your `compose.yaml` as follows:
8585
---
8686
services:
8787
jellyseerr:
88-
image: fallenbagel/jellyseerr:latest
88+
image: ghcr.io/fallenbagel/jellyseerr:latest
8989
init: true
9090
container_name: jellyseerr
9191
environment:
@@ -165,7 +165,7 @@ docker run -d \
165165
-p 5055:5055 \
166166
-v jellyseerr-data:/app/config \
167167
--restart unless-stopped \
168-
fallenbagel/jellyseerr
168+
ghcr.io/fallenbagel/jellyseerr:latest
169169
```
170170

171171
The argument `-e PORT=5055` is optional.
@@ -195,7 +195,7 @@ docker compose up -d
195195
---
196196
services:
197197
jellyseerr:
198-
image: fallenbagel/jellyseerr:latest
198+
image: ghcr.io/fallenbagel/jellyseerr:latest
199199
init: true
200200
container_name: jellyseerr
201201
environment:

0 commit comments

Comments
 (0)