homelab/tasks/sonarr.yml
Renovate Bot 712c30fa00
All checks were successful
Deploy / Prepare Build (push) Successful in 4m53s
chore(deps): update linuxserver/sonarr docker tag to v4.0.10
| datasource | package            | from  | to     |
| ---------- | ------------------ | ----- | ------ |
| docker     | linuxserver/sonarr | 4.0.9 | 4.0.10 |
2024-10-26 04:01:15 +00:00

32 lines
883 B
YAML

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