Search music torrents with Prowlarr and Jackett, queue downloads in Transmission, and track jobs in SQLite.
git clone git@github.com:dx616b/MusiX.git
cd MusiX
cp config/config.docker.yaml.example config/config.docker.yamlEdit config/config.docker.yaml with your Prowlarr, Jackett, and Transmission URLs and API keys (or set them later under Settings in the app).
docker compose up --build -dOr use the published image:
docker pull dx616b/musix:latestIf logs show unable to open database file for /app/data/musicx.db, fix data volume ownership then restart:
docker compose run --rm --user root --entrypoint sh musix -c "chown -R musix:musix /app/data /app/downloads"
docker compose up -d --buildRuns MusiX plus local Prowlarr, Jackett, and Transmission:
cp config/config.bundled.yaml.example config/config.docker.yaml
docker compose -f docker-compose.yml -f docker-compose.bundled.yml up --build -dSet API keys from the Prowlarr/Jackett UIs on ports 9696 and 9117, or via .env (see .env.example).
cp config/config.yaml.example config/config.yaml
# Edit Prowlarr, Jackett, and Transmission
cd web && npm install && npm run build && cd ..
CGO_ENABLED=0 go run ./cmd/server| Where | Purpose |
|---|---|
config/config.yaml |
Base config (local) |
config/config.docker.yaml |
Base config (Docker, gitignored) |
| Settings in the UI | Overrides saved to data/settings.yaml |
Optional env vars (override YAML): PROWLARR_URL, PROWLARR_API_KEY, JACKETT_URL, JACKETT_API_KEY, TRANSMISSION_URL, TRANSMISSION_USER, TRANSMISSION_PASS, MUSIX_SQLITE, SETTINGS_FILE.
See .env.example for more tuning options.