v1.1.1 Release Notes
Added support for Review-Only
Mixarr now supports a "Review-Only" mode for discovered artists. Lidarr connection is no longer required for Subscriptions, and discovered artists will land in the Review Queue.
Added Docker Image Support
Mixarr is now available as a pre-built Docker image on GitHub Container Registry, making deployment faster and easier.
Docker Image:
docker pull ghcr.io/aquantumofdonuts/mixarr:v1.1.1
Docker Usage:
docker run -d \
--name mixarr \
-p 3443:443 \
-v ~/mixarr-data:/data \
-e SESSION_SECRET="$(openssl rand -hex 32)" \
-e FRONTEND_URL="https://YOUR-SERVER-IP:3443" \
-e BASE_URL="https://YOUR-SERVER-IP:3443" \
ghcr.io/aquantumofdonuts/mixarr:v1.1.1What's Notable
Docker Image Publishing
- Pre-built multi-architecture images (amd64, arm64)
- Published to GitHub Container Registry (ghcr.io)
- Automated builds on release tags
- Faster deployment - no build step required
Bug Fixes
- Fixed native ARM64 runner configuration for faster builds
Upgrade Instructions
From Docker Compose
cd mixarr
git fetch --tags
git checkout v1.1.1
docker compose up -d --buildFrom Docker Run
docker pull ghcr.io/aquantumofdonuts/mixarr:v1.1.1
docker stop mixarr
docker rm mixarr
docker run -d \
--name mixarr \
-p 3443:443 \
-v ~/mixarr-data:/data \
-e SESSION_SECRET="your-existing-secret" \
-e FRONTEND_URL="https://YOUR-SERVER-IP:3443" \
-e BASE_URL="https://YOUR-SERVER-IP:3443" \
ghcr.io/aquantumofdonuts/mixarr:v1.1.1Full Changelog
See v1.0.0...v1.1.1