mirror of
https://github.com/ashim-hq/ashim
synced 2026-04-21 13:37:52 +00:00
docs: update getting started guide to include GitHub Container Registry instructions
This commit is contained in:
parent
bac3febbdb
commit
fd823e33f0
2 changed files with 11 additions and 4 deletions
|
|
@ -31,9 +31,6 @@
|
|||
```bash
|
||||
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.
|
||||
|
||||
<details>
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
::: 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:**
|
||||
|
||||
| Field | Value |
|
||||
|
|
@ -32,7 +42,7 @@ Requires the [NVIDIA Container Toolkit](https://docs.nvidia.com/datacenter/cloud
|
|||
```yaml
|
||||
services:
|
||||
ashim:
|
||||
image: ashimhq/ashim:latest
|
||||
image: ashimhq/ashim:latest # or ghcr.io/ashim-hq/ashim:latest
|
||||
ports:
|
||||
- "1349:1349"
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Reference in a new issue