mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
docs: update getting started guide to include GitHub Container Registry instructions
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user