Skip to content

Commit 693504e

Browse files
authored
Merge pull request #9 from gamosoft/features/multi-platform
next attempt to multi-arch image
2 parents f27dc7b + 260f7a9 commit 693504e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
- name: Checkout repository
3333
uses: actions/checkout@v4
3434

35+
- name: Set up QEMU for multi-architecture builds
36+
uses: docker/setup-qemu-action@v3
37+
3538
- name: Set up Docker Buildx
3639
uses: docker/setup-buildx-action@v3
3740

@@ -58,12 +61,14 @@ jobs:
5861
uses: docker/build-push-action@v5
5962
with:
6063
context: .
61-
platforms: linux/amd64 #,linux/arm64,linux/arm/v7
64+
platforms: linux/amd64,linux/arm64
6265
push: true
6366
tags: ${{ steps.meta.outputs.tags }}
6467
labels: ${{ steps.meta.outputs.labels }}
6568
cache-from: type=gha
6669
cache-to: type=gha,mode=max
70+
provenance: false
71+
sbom: false
6772

6873
- name: Image digest
6974
run: echo "Image pushed with digest ${{ steps.build-push.outputs.digest }}"

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ Use the pre-built image directly from GHCR - no building required!
8484
8585
**Option 1: Docker Compose (Recommended)**
8686
87+
> 💡 **Multi-Architecture Support**: Docker images are available for both `x86_64` and `ARM64` (Raspberry Pi, Apple Silicon, etc.)
88+
8789
```bash
8890
# Download the docker-compose file
8991
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
196198
Once you've started NoteDiscovery, you'll find comprehensive guides on:
197199
- 🎨 **THEMES.md** - Theme customization and creating custom themes
198200
-**FEATURES.md** - Complete feature list and keyboard shortcuts
201+
- 🧮 **MATHJAX.md** - LaTeX/Math notation examples and syntax reference
199202
- 🔌 **PLUGINS.md** - Plugin system and available plugins
200203
- 🌐 **API.md** - REST API documentation and examples
201204

0 commit comments

Comments
 (0)