docs: update README Docker/GitHub refs to TREK, push to both Docker Hub repos (trek + nomad)

This commit is contained in:
Maurice
2026-03-28 21:41:03 +01:00
parent e97ecd558f
commit 678fe2d12c
2 changed files with 14 additions and 9 deletions
+6 -1
View File
@@ -80,7 +80,12 @@ jobs:
working-directory: /tmp/digests working-directory: /tmp/digests
run: | run: |
mapfile -t digests < <(printf 'mauriceboe/trek@sha256:%s\n' *) mapfile -t digests < <(printf 'mauriceboe/trek@sha256:%s\n' *)
docker buildx imagetools create -t mauriceboe/trek:latest -t mauriceboe/trek:${{ steps.version.outputs.VERSION }} "${digests[@]}" docker buildx imagetools create \
-t mauriceboe/trek:latest \
-t mauriceboe/trek:${{ steps.version.outputs.VERSION }} \
-t mauriceboe/nomad:latest \
-t mauriceboe/nomad:${{ steps.version.outputs.VERSION }} \
"${digests[@]}"
- name: Inspect manifest - name: Inspect manifest
run: docker buildx imagetools inspect mauriceboe/trek:latest run: docker buildx imagetools inspect mauriceboe/trek:latest
+8 -8
View File
@@ -10,9 +10,9 @@
<p align="center"> <p align="center">
<a href="LICENSE"><img src="https://img.shields.io/badge/License-AGPL_v3-blue.svg" alt="License: AGPL v3" /></a> <a href="LICENSE"><img src="https://img.shields.io/badge/License-AGPL_v3-blue.svg" alt="License: AGPL v3" /></a>
<a href="https://hub.docker.com/r/mauriceboe/nomad"><img src="https://img.shields.io/docker/pulls/mauriceboe/nomad" alt="Docker Pulls" /></a> <a href="https://hub.docker.com/r/mauriceboe/trek"><img src="https://img.shields.io/docker/pulls/mauriceboe/trek" alt="Docker Pulls" /></a>
<a href="https://github.com/mauriceboe/NOMAD"><img src="https://img.shields.io/github/stars/mauriceboe/NOMAD" alt="GitHub Stars" /></a> <a href="https://github.com/mauriceboe/TREK"><img src="https://img.shields.io/github/stars/mauriceboe/TREK" alt="GitHub Stars" /></a>
<a href="https://github.com/mauriceboe/NOMAD/commits"><img src="https://img.shields.io/github/last-commit/mauriceboe/NOMAD" alt="Last Commit" /></a> <a href="https://github.com/mauriceboe/TREK/commits"><img src="https://img.shields.io/github/last-commit/mauriceboe/TREK" alt="Last Commit" /></a>
</p> </p>
<p align="center"> <p align="center">
@@ -92,7 +92,7 @@
## Quick Start ## Quick Start
```bash ```bash
docker run -d -p 3000:3000 -v ./data:/app/data -v ./uploads:/app/uploads mauriceboe/nomad docker run -d -p 3000:3000 -v ./data:/app/data -v ./uploads:/app/uploads mauriceboe/trek
``` ```
The app runs on port `3000`. The first user to register becomes the admin. The app runs on port `3000`. The first user to register becomes the admin.
@@ -112,7 +112,7 @@ TREK works as a Progressive Web App — no App Store needed:
```yaml ```yaml
services: services:
app: app:
image: mauriceboe/nomad:latest image: mauriceboe/trek:latest
container_name: trek container_name: trek
ports: ports:
- "3000:3000" - "3000:3000"
@@ -142,9 +142,9 @@ docker compose pull && docker compose up -d
**Docker Run** — use the same volume paths from your original `docker run` command: **Docker Run** — use the same volume paths from your original `docker run` command:
```bash ```bash
docker pull mauriceboe/nomad docker pull mauriceboe/trek
docker rm -f trek docker rm -f trek
docker run -d --name trek -p 3000:3000 -v ./data:/app/data -v ./uploads:/app/uploads --restart unless-stopped mauriceboe/nomad docker run -d --name trek -p 3000:3000 -v ./data:/app/data -v ./uploads:/app/uploads --restart unless-stopped mauriceboe/trek
``` ```
> **Tip:** Not sure which paths you used? Run `docker inspect trek --format '{{json .Mounts}}'` before removing the container. > **Tip:** Not sure which paths you used? Run `docker inspect trek --format '{{json .Mounts}}'` before removing the container.
@@ -225,7 +225,7 @@ API keys are configured in the **Admin Panel** after login. Keys set by the admi
## Building from Source ## Building from Source
```bash ```bash
git clone https://github.com/mauriceboe/NOMAD.git git clone https://github.com/mauriceboe/TREK.git
cd NOMAD cd NOMAD
docker build -t trek . docker build -t trek .
``` ```