Update box
This commit is contained in:
@ -18,6 +18,7 @@
|
||||
|
||||
volumes = [
|
||||
"/media/Stash-Video:/media/Video"
|
||||
"/media/Stash-Picture:/media/Picture"
|
||||
|
||||
"box-fileflows_temp:/temp"
|
||||
"box-fileflows_logs:/app/Logs"
|
||||
|
@ -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"
|
||||
];
|
||||
|
||||
|
Reference in New Issue
Block a user