homelab/tasks/prowlarr.yml
Renovate Bot 1963b56ab4
All checks were successful
Deploy / Prepare Build (push) Successful in 5m54s
chore(deps): update linuxserver/prowlarr docker tag to v1.25.4
| datasource | package              | from   | to     |
| ---------- | -------------------- | ------ | ------ |
| docker     | linuxserver/prowlarr | 1.24.3 | 1.25.4 |
2024-10-22 04:01:21 +00:00

32 lines
914 B
YAML

---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ data_folder }}/prowlarr"
- "{{ data_folder }}/prowlarr/config"
- name: Create the prowlarr container
docker_container:
name: prowlarr
image: linuxserver/prowlarr:1.25.4
restart_policy: unless-stopped
recreate: true
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_folder }}/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"