diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5896827..05ad1f8 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -80,7 +80,12 @@ jobs: working-directory: /tmp/digests run: | 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 run: docker buildx imagetools inspect mauriceboe/trek:latest diff --git a/README.md b/README.md index 4d0d3a9..c5954f1 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@

License: AGPL v3 - Docker Pulls - GitHub Stars - Last Commit + Docker Pulls + GitHub Stars + Last Commit

@@ -92,7 +92,7 @@ ## Quick Start ```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. @@ -112,7 +112,7 @@ TREK works as a Progressive Web App — no App Store needed: ```yaml services: app: - image: mauriceboe/nomad:latest + image: mauriceboe/trek:latest container_name: trek ports: - "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: ```bash -docker pull mauriceboe/nomad +docker pull mauriceboe/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. @@ -225,7 +225,7 @@ API keys are configured in the **Admin Panel** after login. Keys set by the admi ## Building from Source ```bash -git clone https://github.com/mauriceboe/NOMAD.git +git clone https://github.com/mauriceboe/TREK.git cd NOMAD docker build -t trek . ```