Properly persistent configs

This commit is contained in:
2025-05-06 00:23:19 +10:00
parent b13a52233a
commit 805636f44c
9 changed files with 128 additions and 1108 deletions

View File

@@ -34,6 +34,18 @@ job "transfer" {
mount_flags = ["uid=911","gid=1000"] # linuxserver.io container services run as uid 911
}
}
volume "appdata" {
type = "csi"
read_only = false
source = "unraid_appdata_transferfilebrowser"
access_mode = "single-node-writer"
attachment_mode = "file-system"
mount_options {
mount_flags = ["uid=911","gid=1000"] # linuxserver.io container services run as uid 911
}
}
task "filebrowser" {
driver = "docker"
@@ -49,6 +61,12 @@ job "transfer" {
]
}
volume_mount {
volume = "appdata"
destination = "/database"
read_only = false
}
volume_mount {
volume = "unraid_transfer"
destination = "/srv"