Merge pull request #9 from gamosoft/features/multi-platform
next attempt to multi-arch image
This commit is contained in:
commit
693504e428
|
|
@ -32,6 +32,9 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU for multi-architecture builds
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
|
@ -58,12 +61,14 @@ jobs:
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
platforms: linux/amd64 #,linux/arm64,linux/arm/v7
|
platforms: linux/amd64,linux/arm64
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
cache-from: type=gha
|
cache-from: type=gha
|
||||||
cache-to: type=gha,mode=max
|
cache-to: type=gha,mode=max
|
||||||
|
provenance: false
|
||||||
|
sbom: false
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
run: echo "Image pushed with digest ${{ steps.build-push.outputs.digest }}"
|
run: echo "Image pushed with digest ${{ steps.build-push.outputs.digest }}"
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,8 @@ Use the pre-built image directly from GHCR - no building required!
|
||||||
|
|
||||||
**Option 1: Docker Compose (Recommended)**
|
**Option 1: Docker Compose (Recommended)**
|
||||||
|
|
||||||
|
> 💡 **Multi-Architecture Support**: Docker images are available for both `x86_64` and `ARM64` (Raspberry Pi, Apple Silicon, etc.)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Download the docker-compose file
|
# Download the docker-compose file
|
||||||
curl -O https://raw.githubusercontent.com/gamosoft/notediscovery/main/docker-compose.ghcr.yml
|
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:
|
Once you've started NoteDiscovery, you'll find comprehensive guides on:
|
||||||
- 🎨 **THEMES.md** - Theme customization and creating custom themes
|
- 🎨 **THEMES.md** - Theme customization and creating custom themes
|
||||||
- ✨ **FEATURES.md** - Complete feature list and keyboard shortcuts
|
- ✨ **FEATURES.md** - Complete feature list and keyboard shortcuts
|
||||||
|
- 🧮 **MATHJAX.md** - LaTeX/Math notation examples and syntax reference
|
||||||
- 🔌 **PLUGINS.md** - Plugin system and available plugins
|
- 🔌 **PLUGINS.md** - Plugin system and available plugins
|
||||||
- 🌐 **API.md** - REST API documentation and examples
|
- 🌐 **API.md** - REST API documentation and examples
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue