From aec74345d4f236001070f9ad952f26f41cf9875c Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Mon, 19 May 2025 17:34:07 +0100 Subject: [PATCH] Fix directories and ports. --- services/media.hcl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/media.hcl b/services/media.hcl index 366f408..e2c07b0 100644 --- a/services/media.hcl +++ b/services/media.hcl @@ -11,7 +11,7 @@ job "media" { port "sonarr" { to = 8989 } port "bazarr" { to = 6767 } port "pms" { static = 32400 } - port "qbt_ui" { to = 8080 } + port "qbt_ui" { static = 8080 } port "qbt_torrent" { static = 51413 } } @@ -56,7 +56,7 @@ job "media" { image = "ghcr.io/hotio/sonarr:latest" ports = [ "sonarr" ] volumes = [ - "/data/compute/appdata/sonarr:/config", + "/data/compute/appdata/sonarr-working:/config", "/data/media:/data", ] } @@ -91,7 +91,7 @@ job "media" { ports = [ "bazarr" ] volumes = [ "/data/compute/appdata/bazarr:/config", - "/data/media/media:/data", + "/data/media/media:/data/media", ] } @@ -164,7 +164,7 @@ job "media" { ] volumes = [ "/data/compute/appdata/qbittorrent:/config", - "/data/media/torrents:/data", + "/data/media/torrents:/data/torrents", ] }