1

Update box

This commit is contained in:
2024-05-23 09:30:18 +02:00
parent f00560ed47
commit 9688404763
2 changed files with 51 additions and 0 deletions

View File

@ -18,6 +18,7 @@
volumes = [
"/media/Stash-Video:/media/Video"
"/media/Stash-Picture:/media/Picture"
"box-fileflows_temp:/temp"
"box-fileflows_logs:/app/Logs"

View File

@ -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"
];