From 9688404763d4e600c77b7ccfed0b65338643fbec Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 23 May 2024 09:30:18 +0200 Subject: [PATCH] Update box --- ServeNix/services/box-fileflows.nix | 1 + ServeNix/services/box-stash.nix | 50 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) 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" ];