mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 02:41:11 +01:00
chore: add arm64 build support to Docker workflow
* Update beta-build.yml * Update release-build.yml * docs: update README to include compatibility information --------- Co-authored-by: Marvin Haschker <123marvin123@users.noreply.github.com> Co-authored-by: Sam Chau <chaucted@gmail.com>
This commit is contained in:
8
.github/workflows/beta-build.yml
vendored
8
.github/workflows/beta-build.yml
vendored
@@ -14,7 +14,12 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
with:
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
@@ -46,6 +51,7 @@ jobs:
|
|||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
context: .
|
context: .
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: santiagosayshey/profilarr:beta
|
tags: santiagosayshey/profilarr:beta
|
||||||
|
|||||||
6
.github/workflows/release-build.yml
vendored
6
.github/workflows/release-build.yml
vendored
@@ -16,6 +16,11 @@ jobs:
|
|||||||
id: tag
|
id: tag
|
||||||
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
with:
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
|
|
||||||
- name: Set up Node.js
|
- name: Set up Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
@@ -47,6 +52,7 @@ jobs:
|
|||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
santiagosayshey/profilarr:latest
|
santiagosayshey/profilarr:latest
|
||||||
|
|||||||
21
README.md
21
README.md
@@ -22,6 +22,13 @@ Configuration management tool for Radarr/Sonarr that automates importing and ver
|
|||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
### Compatibility
|
||||||
|
|
||||||
|
| Architecture | Support |
|
||||||
|
| ------------------------------ | ------------ |
|
||||||
|
| amd64 (x86_64) | ✅ Supported |
|
||||||
|
| arm64 (Apple Silicon, RPi 4/5) | ✅ Supported |
|
||||||
|
|
||||||
### Quick Installation (Docker Compose)
|
### Quick Installation (Docker Compose)
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@@ -70,13 +77,15 @@ Detailed contributing guidelines will be available soon. Join our Discord to dis
|
|||||||
|
|
||||||
## Status
|
## Status
|
||||||
|
|
||||||
Currently in beta. Part of the [Dictionarry](https://github.com/Dictionarry-Hub) project to simplify media automation.
|
Currently in beta. Part of the [Dictionarry](https://github.com/Dictionarry-Hub) project to simplify media automation.
|
||||||
|
|
||||||
### Known Issues
|
### Known Issues
|
||||||
- Light Mode is not working
|
|
||||||
- Renaming / Deleting files can be a little wonky - if you expect to stay connected with a database, try to limit deleting / renaming files.
|
- Light Mode is not working
|
||||||
- State management for custom format conditions is also a little wonky on chromium based browsers
|
- Renaming / Deleting files can be a little wonky - if you expect to stay connected with a database, try to limit deleting / renaming files.
|
||||||
|
- State management for custom format conditions is also a little wonky on chromium based browsers
|
||||||
|
|
||||||
### Development
|
### Development
|
||||||
- Currently focused on fixing bugs found in open beta
|
|
||||||
- 1.1 will focus on improving the 'setup' side of profilarr - adding media management / quality settings syncs
|
- Currently focused on fixing bugs found in open beta
|
||||||
|
- 1.1 will focus on improving the 'setup' side of profilarr - adding media management / quality settings syncs
|
||||||
|
|||||||
Reference in New Issue
Block a user