From 7f5a35d93607f4335d6772c6098caca180f77560 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 12 Jan 2025 00:03:26 -0500 Subject: [PATCH] add radarr service --- compose/truenas-media.yaml | 71 ++++++++++++++++++++++++++++++++------ 1 file changed, 61 insertions(+), 10 deletions(-) diff --git a/compose/truenas-media.yaml b/compose/truenas-media.yaml index 7bf9797..792aa4a 100644 --- a/compose/truenas-media.yaml +++ b/compose/truenas-media.yaml @@ -10,22 +10,73 @@ networks: name: apps services: - jellyfin: - container_name: jellyfin - image: jellyfin # FIX + # jellyfin: + # container_name: jellyfin + # image: jellyfin # FIX + # restart: unless-stopped + # networks: + # apps: + # ipv4_address: 10.96.10.101 + # link_local_ips: [] + # volumes: + # - /mnt/hdd/apps/jellyfin:/config + # - /mnt/hdd/media:/media + # - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt + # - /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt + + cert-sorter: + container_name: cert-sorter + image: code.balsillie.net/michael/containers/cert-sorter:latest + pull_policy: always + restart: 'no' + volumes: + - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt + - /mnt/hdd/apps/cert-1000:/dest/1000 + network_mode: none + + qbittorrent: + container_name: torrent + image: code.balsillie.net/michael/containers/qbittorrent:latest + pull_policy: always + depends_on: + cert-sorter: + condition: service_completed_successfully + required: true + restart: true restart: unless-stopped + hostname: torrent + domainname: balsillie.house + dns: 10.2.0.1 + user: ubuntu networks: apps: - ipv4_address: 10.96.10.101 + ipv4_address: 10.96.10.102 link_local_ips: [] volumes: - - /mnt/hdd/apps/jellyfin:/config + - /mnt/hdd/apps/torrent:/config - /mnt/hdd/media:/media - - /mnt/hdd/apps/certbot/etc:/etc/letsencrypt - - /mnt/hdd/apps/certbot/var:/var/lib/letsencrypt + - /mnt/hdd/apps/cert-1000:/cert -# qbittorrent + radarr: + container_name: radarr + image: code.balsillie.net/michael/containers/radarr:latest + pull_policy: always + depends_on: + cert-sorter: + condition: service_completed_successfully + required: true + restart: true + restart: unless-stopped + hostname: radarr + domainname: balsillie.house + user: ubuntu + networks: + apps: + ipv4_address: 10.96.10.104 + link_local_ips: [] + volumes: + - /mnt/hdd/apps/radarr:/config + - /mnt/hdd/media:/media + - /mnt/hdd/apps/cert-1000:/cert # sonarr - -# radarr \ No newline at end of file