Skip to content

Quick start

Beta: images are published automatically on every push to main as a multi-arch manifest (linux/amd64 + linux/arm64). Use the beta tag for the latest build, or pin a specific version (e.g. ghcr.io/artpou/seedarr:0.1.0-beta.0).

Terminal window
mkdir seedarr && cd seedarr
curl -fsSL https://raw.githubusercontent.com/Artpou/seedarr/main/docker-compose.yml -o docker-compose.yml
docker compose pull
docker compose up -d

Seedarr 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:

Terminal window
docker compose pull && docker compose up -d
Terminal window
git clone https://github.com/Artpou/seedarr.git
cd seedarr
cp .env.example .env
pnpm install
pnpm db:push
pnpm dev

Open http://localhost:3000 — the API runs on port 3002.

  • 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.