1

Servenix: Update box service

This commit is contained in:
2025-03-26 14:02:21 +01:00
parent 70ead97dbc
commit f91dbcc046

View File

@ -4,62 +4,61 @@
pkgs,
...
}: {
virtualisation.oci-containers.containers.box-stash-cdp = {
image = "chromedp/headless-shell:latest";
autoStart = true;
# virtualisation.oci-containers.containers.box-stash-cdp = {
# image = "chromedp/headless-shell:latest";
# autoStart = true;
dependsOn = [
# "pihole"
];
# dependsOn = [
# # "pihole"
# ];
ports = [
# "9222:9222"
];
# ports = [
# # "9222:9222"
# ];
volumes = [];
# volumes = [];
environment = {};
# environment = {};
extraOptions = [
# "--gpus=all"
# "--shm-size=2G"
"--net=behind-nginx"
];
};
# extraOptions = [
# # "--gpus=all"
# # "--shm-size=2G"
# "--net=behind-nginx"
# ];
# };
virtualisation.oci-containers.containers.box-stash-flaresolverr = {
image = "ghcr.io/flaresolverr/flaresolverr:latest";
autoStart = true;
# virtualisation.oci-containers.containers.box-stash-flaresolverr = {
# image = "ghcr.io/flaresolverr/flaresolverr:latest";
# autoStart = true;
dependsOn = [
# "pihole"
];
# dependsOn = [
# # "pihole"
# ];
ports = [
# "8191:8191"
];
# ports = [
# # "8191:8191"
# ];
volumes = [];
# volumes = [];
environment = {
LOG_LEVEL = "info";
};
# environment = {
# LOG_LEVEL = "info";
# };
extraOptions = [
# "--gpus=all"
# "--shm-size=2G"
"--net=behind-nginx"
];
};
# 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"
# "box-stash-cdp"
# "box-stash-flaresolverr"
];
ports = [