Quick start
Docker (recommended)
Section titled “Docker (recommended)”Beta: images are published automatically on every push to
mainas a multi-arch manifest (linux/amd64+linux/arm64). Use thebetatag for the latest build, or pin a specific version (e.g.ghcr.io/artpou/seedarr:0.1.0-beta.0).
mkdir seedarr && cd seedarrcurl -fsSL https://raw.githubusercontent.com/Artpou/seedarr/main/docker-compose.yml -o docker-compose.ymldocker compose pulldocker compose up -dSeedarr will be available at http://localhost:5551. Create your account, open Settings → Modules, install an indexer (Torrentio is recommended), and start browsing.
Update to the latest beta:
docker compose pull && docker compose up -dManual setup
Section titled “Manual setup”git clone https://github.com/Artpou/seedarr.gitcd seedarrcp .env.example .envpnpm installpnpm db:pushpnpm devOpen http://localhost:3000 — the API runs on port 3002.
Requirements
Section titled “Requirements”- Node.js 22.13+
- pnpm 9+
- Optional: FFmpeg for live remux of progressive MP4 while downloading
See Docker for building from source and Contributing for a full development setup.