From e53e69bbe0ed01dd6a65d886c7bac265fd4fbaa1 Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Wed, 12 Nov 2025 09:01:30 +0100 Subject: [PATCH 1/2] next attempt to multi-arch image also fixed readme --- .github/workflows/docker-publish.yml | 5 ++++- README.md | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 249144d..c58fcda 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -32,6 +32,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Set up QEMU for multi-architecture builds + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -58,7 +61,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . - platforms: linux/amd64 #,linux/arm64,linux/arm/v7 + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/README.md b/README.md index 76c3a50..6938b7b 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,8 @@ Use the pre-built image directly from GHCR - no building required! **Option 1: Docker Compose (Recommended)** +> 💡 **Multi-Architecture Support**: Docker images are available for both `x86_64` and `ARM64` (Raspberry Pi, Apple Silicon, etc.) + ```bash # Download the docker-compose file curl -O https://raw.githubusercontent.com/gamosoft/notediscovery/main/docker-compose.ghcr.yml @@ -196,6 +198,7 @@ Want to learn more? **The full documentation lives inside the app as interactive Once you've started NoteDiscovery, you'll find comprehensive guides on: - 🎨 **THEMES.md** - Theme customization and creating custom themes - ✨ **FEATURES.md** - Complete feature list and keyboard shortcuts +- 🧮 **MATHJAX.md** - LaTeX/Math notation examples and syntax reference - 🔌 **PLUGINS.md** - Plugin system and available plugins - 🌐 **API.md** - REST API documentation and examples From 260f7a95bc814c6597d75744cfaf299a89d43c29 Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Wed, 12 Nov 2025 09:14:54 +0100 Subject: [PATCH 2/2] removed unknown from manifest --- .github/workflows/docker-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c58fcda..d212b03 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -67,6 +67,8 @@ jobs: labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max + provenance: false + sbom: false - name: Image digest run: echo "Image pushed with digest ${{ steps.build-push.outputs.digest }}"