diff --git a/ServeNix/services/box-fileflows.nix b/ServeNix/services/box-fileflows.nix index fdf81d6..d94c016 100644 --- a/ServeNix/services/box-fileflows.nix +++ b/ServeNix/services/box-fileflows.nix @@ -18,6 +18,7 @@ volumes = [ "/media/Stash-Video:/media/Video" + "/media/Stash-Picture:/media/Picture" "box-fileflows_temp:/temp" "box-fileflows_logs:/app/Logs" diff --git a/ServeNix/services/box-stash.nix b/ServeNix/services/box-stash.nix index 312e9b9..6779251 100644 --- a/ServeNix/services/box-stash.nix +++ b/ServeNix/services/box-stash.nix @@ -4,11 +4,61 @@ pkgs, ... }: { + virtualisation.oci-containers.containers.box-stash-cdp = { + image = "chromedp/headless-shell:latest"; + autoStart = true; + + dependsOn = [ + # "pihole" + ]; + + ports = [ + # "9222:9222" + ]; + + volumes = []; + + environment = {}; + + extraOptions = [ + # "--gpus=all" + # "--shm-size=2G" + "--net=behind-nginx" + ]; + }; + + virtualisation.oci-containers.containers.box-stash-flaresolverr = { + image = "ghcr.io/flaresolverr/flaresolverr:latest"; + autoStart = true; + + dependsOn = [ + # "pihole" + ]; + + ports = [ + # "8191:8191" + ]; + + volumes = []; + + environment = { + LOG_LEVEL = "info"; + }; + + extraOptions = [ + # "--gpus=all" + # "--shm-size=2G" + "--net=behind-nginx" + ]; + }; + virtualisation.oci-containers.containers.box-stash = { image = "stashapp/stash:latest"; autoStart = true; dependsOn = [ + "box-stash-cdp" + "box-stash-flaresolverr" # "pihole" ];