Prowlarr install docker
docker-compose (recommended, click here for more info)
---
version: "2.1"
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:latest
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /path/to/data:/config
ports:
- 9696:9696
restart: unless-stopped
docker cli (click here for more info)
docker run -d \
--name=prowlarr \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-p 9696:9696 \
-v /path/to/data:/config \
--restart unless-stopped \
lscr.io/linuxserver/prowlarr:latest