Windows
edit.music for Windows
Runs locally — others on your network can join in
Install on a Windows machine and point it at your local music folder. Anyone on the same network
can connect and participate in editing your collection — no Docker or cloud required.
macOS
edit.music for Mac
Native macOS app — drag and drop install
Download the disk image, drag edit.music to your Applications folder, and launch.
Runs locally; share access with anyone on your network.
Linux
edit.music for Linux beta
.deb for Debian/Ubuntu, or a portable binary for any distro
Install the .deb on Debian/Ubuntu-based systems for app-menu integration, or grab the
portable .tar.gz binary that runs on any distro — no install required. Runs locally;
share access with anyone on your network.
Docker / Self-host
Self-hosted via Docker
Runs anywhere Docker is installed — Unraid, NAS, VPS, Raspberry Pi
Pull the image and mount your music library. The web UI is accessible from any browser on your network.
Persist metadata with the named volume so it survives container updates.
1
Save the compose file below, then run docker compose up -d
2
Open http://<your-host>:3001 in a browser
3
Update the image anytime: docker compose pull && docker compose up -d
services: edit-music: image: ghcr.io/hihilabs/edit.music:latest container_name: edit-music restart: unless-stopped ports: - "3001:3001" environment: - MUSIC_ROOT=/storage/music - RECYCLE_ROOT=/storage/recycle_bin - DATA_DIR=/data volumes: - /your/music/path:/storage/music # ← update this - edit-music-data:/data volumes: edit-music-data: