Merge pull request #34 from nomyo-ai/dev-v0.7.x

docs: adding ghcr docker pull instructions
This commit is contained in:
Alpha Nerd 2026-03-10 15:58:45 +01:00 committed by GitHub
commit 95d03d828e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,7 +72,21 @@ uvicorn router:app --host 127.0.0.1 --port 12434 --loop uvloop
## Docker Deployment
Build the container image locally:
### Pre-built image (GitHub Container Registry)
Pre-built multi-arch images (`linux/amd64`, `linux/arm64`) are published automatically on every release:
```sh
docker pull ghcr.io/nomyo-ai/nomyo-router:latest
```
Specific version:
```sh
docker pull ghcr.io/nomyo-ai/nomyo-router:0.7.0
```
### Build the container image locally:
```sh
docker build -t nomyo-router .