moves /mnt/20tb/ away to just /mnt

This commit is contained in:
2024-11-15 20:23:55 +01:00
parent 8638652839
commit 60f0ab11bd
8 changed files with 97 additions and 101 deletions

View File

@ -11,7 +11,7 @@ services:
- host.docker.internal:host-gateway
volumes:
- ./data/radarr-config:/config
- /mnt/20tb:/storage
- /mnt:/storage
restart: "unless-stopped"
sonarr:
@ -21,7 +21,7 @@ services:
- TZ=Europe/Amsterdam
volumes:
- ./data/sonarr-config:/config
- /mnt/20tb:/storage
- /mnt:/storage
ports:
- 8989:8989
extra_hosts:
@ -38,7 +38,7 @@ services:
- host.docker.internal:host-gateway
volumes:
- ./data/lidarr-config:/config
- /mnt/20tb:/storage
- /mnt:/storage
restart: unless-stopped
whisparr:
@ -51,7 +51,7 @@ services:
- host.docker.internal:host-gateway
volumes:
- ./data/whisparr-config:/config
- /mnt/20tb:/storage
- /mnt:/storage
restart: unless-stopped
prowlarr:

View File

@ -1,18 +1,12 @@
{ ... }:
{ config, pkgs, ... }:
let
files = builtins.removeAttrs (builtins.readDir ./.) [ "default.nix" ];
# Import all other .nix files as modules
moduleFiles = builtins.map (fname: ./. + "/${fname}") (builtins.attrNames files);
in
{
imports = [
./arr-stack.nix
./duplicati.nix
./factorio.nix
./gitea.nix
./golink.nix
./immich.nix
./minecraft.nix
./plex.nix
./sabnzbd.nix
./satisfactory.nix
./stash.nix
./torrent.nix
./wireguard.nix
];
# Import all the package modules
imports = moduleFiles;
}

View File

@ -18,9 +18,9 @@ services:
- NVIDIA_DRIVER_CAPABILITIES=compute,video,utility
volumes:
- ./data/plex:/config
- /mnt/20tb/Movies:/movies
- /mnt/20tb/TV_Shows:/tvshows
- /mnt/20tb/Music:/music
- /mnt/movies:/movies
- /mnt/tvshows:/tvshows
- /mnt/music:/music
restart: unless-stopped
tautulli:

View File

@ -6,7 +6,7 @@ services:
- TZ=Europe/Amsterdam
volumes:
- ./data:/config
- /mnt/20tb:/storage
- /mnt:/storage
ports:
- 7788:8080
restart: unless-stopped

View File

@ -17,7 +17,7 @@ services:
## Keep configs, scrapers, and plugins here.
- ./data/config:/root/.stash
## Point this at your collection.
- /mnt/20tb/Stash:/data
- /mnt/stash:/data
## This is where your stash's metadata lives
- ./data/metadata:/metadata
## Any other cache content.

View File

@ -29,7 +29,7 @@ services:
volumes:
- "/etc/localtime:/etc/localtime:ro"
- ./data/qbit:/config
- /mnt/20tb:/storage
- /mnt:/storage
depends_on:
- gluetun
restart: always