Migrate host volumes to NFS & consolidate.

This commit is contained in:
2025-10-23 21:58:44 +01:00
parent 854f663fb0
commit 58bb710cb9
6 changed files with 42 additions and 63 deletions

View File

@@ -19,24 +19,24 @@ job "igsync" {
read_only = true
source = "sw"
}
volume "appdata" {
volume "services" {
type = "host"
read_only = false
source = "appdata"
source = "services"
}
task "sync" {
driver = "exec"
config {
command = "/appdata/igsync/run.sh"
command = "/data/services/igsync/run.sh"
}
user = "ppetru"
volume_mount {
volume = "appdata"
destination = "/appdata"
volume = "services"
destination = "/data/services"
}
volume_mount {
volume = "nix-store"