Files
homelab/tasks/prowlarr.yml
Renovate Bot e89ca0530e
All checks were successful
Deploy / Prepare Build (push) Successful in 14m47s
chore(deps): update linuxserver/prowlarr docker tag to v2.1.5
| datasource | package              | from  | to    |
| ---------- | -------------------- | ----- | ----- |
| docker     | linuxserver/prowlarr | 2.0.5 | 2.1.5 |
2025-10-26 05:03:21 +00:00

33 lines
894 B
YAML

---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
- "/data/prowlarr"
- "/data/prowlarr/config"
- name: Create the prowlarr container
docker_container:
name: prowlarr
image: linuxserver/prowlarr:2.1.5
restart_policy: unless-stopped
networks:
- name: proxy
env:
PUID: "1000"
PGID: "1000"
TZ: "Australia/Brisbane"
AUTO_UPDATE: "true" #optional
DOCKER_MODS: "ghcr.io/themepark-dev/theme.park:prowlarr"
volumes:
- "/data/prowlarr/config:/config"
labels:
traefik.enable: "true"
traefik.http.routers.prowlarr.rule: "Host(`prowlarr.comprofix.xyz`)"
traefik.http.routers.prowlarr.entrypoints: "https"
traefik.http.routers.prowlarr.tls: "true"
traefik.http.services.prowlarr.loadbalancer.server.port: "9696"
pull: true
recreate: true