homelab/tasks/readarr.yml
Renovate Bot bdc7bdd228
All checks were successful
Deploy / Prepare Build (push) Successful in 1m35s
chore(deps): update ghcr.io/linuxserver/readarr:develop docker digest to b1e797a
2025-04-20 07:01:52 +00:00

32 lines
977 B
YAML

---
- name: Create directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ data_folder }}/readarr"
- "{{ data_folder }}/readarr/config"
- name: Create the readarr container
docker_container:
name: readarr
image: ghcr.io/linuxserver/readarr:develop@sha256:b1e797a398a8ba396a2e300b055fb374d8309de423c69c00ed163c17096b3d1b
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:readarr"
volumes:
- "{{ data_folder }}/readarr/config/:/config"
- /mnt/nfs/data/:/data
labels:
traefik.enable: "true"
traefik.http.routers.readarr.rule: "Host(`readarr.comprofix.xyz`)"
traefik.http.routers.readarr.entrypoints: "https"
traefik.http.routers.readarr.tls: "true"
traefik.http.services.readarr.loadbalancer.server.port: "8787"