docs: update Docker image references to use GitHub Container Registry

This commit is contained in:
ashim-hq
2026-04-16 17:51:14 +08:00
parent fd823e33f0
commit e516cee836
2 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -29,7 +29,7 @@
## Quick Start ## Quick Start
```bash ```bash
docker run -d -p 1349:1349 -v ashim-data:/data ashimhq/ashim:latest docker run -d -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
``` ```
Open http://localhost:1349 in your browser. Open http://localhost:1349 in your browser.
@@ -40,7 +40,7 @@ Open http://localhost:1349 in your browser.
Add `--gpus all` for GPU-accelerated background removal, upscaling, and OCR: Add `--gpus all` for GPU-accelerated background removal, upscaling, and OCR:
```bash ```bash
docker run -d -p 1349:1349 --gpus all -v ashim-data:/data ashimhq/ashim:latest docker run -d -p 1349:1349 --gpus all -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
``` ```
> Requires an NVIDIA GPU and [Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html). Falls back to CPU if no GPU is found. See [Docker Tags](https://ashim-hq.github.io/ashim/guide/docker-tags) for benchmarks and Docker Compose examples. > Requires an NVIDIA GPU and [Container Toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html). Falls back to CPU if no GPU is found. See [Docker Tags](https://ashim-hq.github.io/ashim/guide/docker-tags) for benchmarks and Docker Compose examples.
+5 -7
View File
@@ -3,19 +3,17 @@
## Quick Start ## Quick Start
```bash ```bash
docker run -d -p 1349:1349 -v ashim-data:/data ashimhq/ashim:latest docker run -d -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
``` ```
Open [http://localhost:1349](http://localhost:1349) in your browser. Open [http://localhost:1349](http://localhost:1349) in your browser.
::: tip Prefer GitHub Container Registry? ::: tip Also on Docker Hub
Pull from GHCR instead of Docker Hub:
```bash ```bash
docker run -d -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest docker run -d -p 1349:1349 -v ashim-data:/data ashimhq/ashim:latest
``` ```
Both registries publish the same image on every release. GHCR can be faster if you are on a network where Docker Hub is rate-limited. Both registries publish the same image on every release.
::: :::
**Default credentials:** **Default credentials:**
@@ -42,7 +40,7 @@ Requires the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud
```yaml ```yaml
services: services:
ashim: ashim:
image: ashimhq/ashim:latest # or ghcr.io/ashim-hq/ashim:latest image: ghcr.io/ashim-hq/ashim:latest # or ashimhq/ashim:latest
ports: ports:
- "1349:1349" - "1349:1349"
volumes: volumes: