Replace tautulli with tracearr since it supports Jellyfin

This commit is contained in:
Mike Wilson
2026-08-14 15:28:19 -04:00
parent 99db93ee1d
commit fd55cef154
4 changed files with 19 additions and 678 deletions
+22
View File
@@ -0,0 +1,22 @@
- name: Create install directory
file:
path: "{{ install_directory }}/{{ role_name }}"
state: directory
owner: "{{ docker_user }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Copy docker-compose file to destination
template:
src: docker-compose.yml
dest: "{{ install_directory }}/{{ role_name }}/docker-compose.yml"
owner: "{{ docker_user }}"
mode: "{{ docker_compose_file_mask }}"
validate: docker compose -f %s config
become: true
- name: Start docker container
community.docker.docker_compose_v2:
project_src: "{{ install_directory }}/{{ role_name }}"
pull: always
remove_orphans: yes
@@ -0,0 +1,19 @@
networks:
traefik:
external: true
services:
tracearr:
container_name: "tracearr"
image: ghcr.io/connorgallopo/tracearr:supervised
restart: unless-stopped
networks:
- traefik
environment:
- "TZ={{ timezone }}"
volumes:
- "{{ data_dir }}/{{ role_name }}:/data"
labels:
traefik.enable: true
traefik.http.routers.tracearr.rule: "Host(`{{ role_name }}.local.{{ personal_domain }}`)"
traefik.http.routers.tracearr.middlewares: lan-whitelist@file