docs: update getting started guide to include GitHub Container Registry instructions

This commit is contained in:
ashim-hq
2026-04-16 17:38:17 +08:00
parent bac3febbdb
commit fd823e33f0
2 changed files with 11 additions and 4 deletions
-3
View File
@@ -31,9 +31,6 @@
```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 ashimhq/ashim:latest
``` ```
> **Prefer GHCR?** `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.
<details> <details>
+11 -1
View File
@@ -8,6 +8,16 @@ docker run -d -p 1349:1349 -v ashim-data:/data ashimhq/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?
Pull from GHCR instead of Docker Hub:
```bash
docker run -d -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/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.
:::
**Default credentials:** **Default credentials:**
| Field | Value | | Field | Value |
@@ -32,7 +42,7 @@ Requires the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud
```yaml ```yaml
services: services:
ashim: ashim:
image: ashimhq/ashim:latest image: ashimhq/ashim:latest # or ghcr.io/ashim-hq/ashim:latest
ports: ports:
- "1349:1349" - "1349:1349"
volumes: volumes: