Add Anki route and fix Jellyfin cache disk exhaustion
Ansible Lint / lint (push) Successful in 6s

- Add adyrem.duckdns.org/Anki → claude-code VM:4002 via Traefik
- Add anki.homelab DNS entry to Pi-hole
- Mount Jellyfin transcode cache to /media/transcodes (HDD) instead of
  anonymous Docker volume on root disk; prevents root disk from filling up

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Adyrem
2026-05-19 15:02:21 +02:00
parent bc838dfcb6
commit c707a7cceb
4 changed files with 9 additions and 0 deletions
@@ -11,6 +11,7 @@
loop:
- /media/movies
- /media/tv
- /media/transcodes
# --- qBittorrent: pre-seed credentials on fresh install ---
@@ -11,6 +11,7 @@ services:
volumes:
- /containers/jellyfin/config:/config
- /media:/media
- /media/transcodes:/cache
ports:
- "8096:8096"
restart: unless-stopped
+1
View File
@@ -11,6 +11,7 @@ pihole_dns_hosts:
- { ip: "10.10.1.3", host: "grafana.homelab" }
- { ip: "10.10.1.3", host: "proxmox.homelab" }
- { ip: "10.10.1.3", host: "adyrem.duckdns.org" }
- { ip: "10.10.1.3", host: "anki.homelab" }
- { ip: "10.10.1.3", host: "devbox.homelab" }
- { ip: "10.10.1.3", host: "jellyfin.homelab" }
- { ip: "10.10.1.3", host: "jellyseerr.homelab" }
+6
View File
@@ -17,6 +17,12 @@ traefik_services:
host: "devbox.homelab"
backend: "http://10.10.2.10:4001"
public_host: "adyrem.duckdns.org"
- name: anki
host: "anki.homelab"
backend: "http://10.10.2.10:4002"
public_host: "adyrem.duckdns.org"
public_path: "/Anki"
strip_prefix: "/Anki"
- name: mtg
host: "mtg.homelab"
backend: "http://10.10.2.10:3000"