moved storage to zfs

This commit is contained in:
Richie Cahill 2024-06-21 10:31:06 -04:00
parent 44881725ce
commit 4d7d4d05c6
3 changed files with 7 additions and 7 deletions

View File

@ -72,7 +72,7 @@
}; };
"books" = { "books" = {
id = "6uppx-vadmy"; # cspell:disable-line id = "6uppx-vadmy"; # cspell:disable-line
path = "/ZFS/storage/Syncthing/books"; path = "/zfs/storage/Syncthing/books";
devices = [ devices = [
"bob" "bob"
"phone" "phone"
@ -82,7 +82,7 @@
}; };
"important" = { "important" = {
id = "4ckma-gtshs"; # cspell:disable-line id = "4ckma-gtshs"; # cspell:disable-line
path = "/ZFS/storage/Syncthing/important"; path = "/zfs/storage/Syncthing/important";
devices = [ devices = [
"bob" "bob"
"phone" "phone"
@ -92,7 +92,7 @@
}; };
"music" = { "music" = {
id = "vprc5-3azqc"; # cspell:disable-line id = "vprc5-3azqc"; # cspell:disable-line
path = "/ZFS/storage/Syncthing/music"; path = "/zfs/storage/Syncthing/music";
devices = [ devices = [
"bob" "bob"
"phone" "phone"
@ -102,7 +102,7 @@
}; };
"projects" = { "projects" = {
id = "vyma6-lqqrz"; # cspell:disable-line id = "vyma6-lqqrz"; # cspell:disable-line
path = "/ZFS/storage/Syncthing/projects"; path = "/zfs/storage/Syncthing/projects";
devices = [ devices = [
"bob" "bob"
"rhapsody-in-green" "rhapsody-in-green"

View File

@ -70,7 +70,7 @@
}; };
volumes = [ volumes = [
"/zfs/media/docker/configs/radarr:/config" "/zfs/media/docker/configs/radarr:/config"
"/ZFS/storage/Plex/Movies:/movies" "/zfs/storage/Plex/movies:/movies"
"/zfs/torrenting/qbitvpn:/data" "/zfs/torrenting/qbitvpn:/data"
]; ];
autoStart = true; autoStart = true;
@ -84,7 +84,7 @@
}; };
volumes = [ volumes = [
"/zfs/media/docker/configs/sonarr:/config" "/zfs/media/docker/configs/sonarr:/config"
"/ZFS/storage/Plex/TV:/tv" "/zfs/storage/Plex/tv:/tv"
"/zfs/torrenting/qbitvpn:/data" "/zfs/torrenting/qbitvpn:/data"
]; ];
autoStart = true; autoStart = true;

View File

@ -11,7 +11,7 @@
image = "ubuntu/apache2:latest"; image = "ubuntu/apache2:latest";
volumes = [ volumes = [
"/zfs/media/docker/templates/file_server/sites/:/etc/apache2/sites-enabled/" "/zfs/media/docker/templates/file_server/sites/:/etc/apache2/sites-enabled/"
"/ZFS/storage/main/Table_Top/:/data" "/zfs/storage/main/Table_Top/:/data"
]; ];
extraOptions = [ "--network=web" ]; extraOptions = [ "--network=web" ];
autoStart = true; autoStart = true;