suggestarr and bookshelf

This commit is contained in:
mjallen18
2026-04-01 16:54:56 -05:00
parent e4daf12f39
commit 166123e8fe
5 changed files with 76 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
{
lib,
config,
namespace,
...
}:
let
cfg = config.${namespace}.services."suggestarr";
in
{
imports = [
(lib.${namespace}.mkContainerService {
inherit config;
name = "suggestarr";
image = "ciuse99/suggestarr";
internalPort = 5000;
volumes = [
"${cfg.configDir}/suggestarr:/app/config/config_files"
];
environmentFiles = [ ];
})
];
}