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