docs: add --name ashim to all docker run commands

Ensures the container is named ashim in Docker Desktop on all
platforms instead of getting a random name.
This commit is contained in:
ashim-hq
2026-04-16 23:45:11 +08:00
parent 1553a2445d
commit 1de0dd12bf
5 changed files with 28 additions and 7 deletions
+2 -2
View File
@@ -29,7 +29,7 @@
## Quick Start
```bash
docker run -d -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
docker run -d --name ashim -p 1349:1349 -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
```
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:
```bash
docker run -d -p 1349:1349 --gpus all -v ashim-data:/data ghcr.io/ashim-hq/ashim:latest
docker run -d --name ashim -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.