Skip to content

Docker

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

Images are multi-arch (linux/amd64 + linux/arm64). Docker pulls the matching architecture automatically (PC, NAS, Freebox, Raspberry Pi, etc.).

For contributors or custom images:

Terminal window
git clone https://github.com/Artpou/seedarr.git
cd seedarr
docker compose -f docker-compose.yml -f docker-compose.build.yml up -d --build
  • beta — latest build from main
  • Version tags such as 0.1.0-beta.0 — pin a specific release

Refer to docker-compose.yml and the Dockerfile in the repository for volumes, ports, and environment variables.