Servenix: Update box service
This commit is contained in:
@ -4,62 +4,61 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
virtualisation.oci-containers.containers.box-stash-cdp = {
|
# virtualisation.oci-containers.containers.box-stash-cdp = {
|
||||||
image = "chromedp/headless-shell:latest";
|
# image = "chromedp/headless-shell:latest";
|
||||||
autoStart = true;
|
# autoStart = true;
|
||||||
|
|
||||||
dependsOn = [
|
# dependsOn = [
|
||||||
# "pihole"
|
# # "pihole"
|
||||||
];
|
# ];
|
||||||
|
|
||||||
ports = [
|
# ports = [
|
||||||
# "9222:9222"
|
# # "9222:9222"
|
||||||
];
|
# ];
|
||||||
|
|
||||||
volumes = [];
|
# volumes = [];
|
||||||
|
|
||||||
environment = {};
|
# environment = {};
|
||||||
|
|
||||||
extraOptions = [
|
# extraOptions = [
|
||||||
# "--gpus=all"
|
# # "--gpus=all"
|
||||||
# "--shm-size=2G"
|
# # "--shm-size=2G"
|
||||||
"--net=behind-nginx"
|
# "--net=behind-nginx"
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.box-stash-flaresolverr = {
|
# virtualisation.oci-containers.containers.box-stash-flaresolverr = {
|
||||||
image = "ghcr.io/flaresolverr/flaresolverr:latest";
|
# image = "ghcr.io/flaresolverr/flaresolverr:latest";
|
||||||
autoStart = true;
|
# autoStart = true;
|
||||||
|
|
||||||
dependsOn = [
|
# dependsOn = [
|
||||||
# "pihole"
|
# # "pihole"
|
||||||
];
|
# ];
|
||||||
|
|
||||||
ports = [
|
# ports = [
|
||||||
# "8191:8191"
|
# # "8191:8191"
|
||||||
];
|
# ];
|
||||||
|
|
||||||
volumes = [];
|
# volumes = [];
|
||||||
|
|
||||||
environment = {
|
# environment = {
|
||||||
LOG_LEVEL = "info";
|
# LOG_LEVEL = "info";
|
||||||
};
|
# };
|
||||||
|
|
||||||
extraOptions = [
|
# extraOptions = [
|
||||||
# "--gpus=all"
|
# # "--gpus=all"
|
||||||
# "--shm-size=2G"
|
# # "--shm-size=2G"
|
||||||
"--net=behind-nginx"
|
# "--net=behind-nginx"
|
||||||
];
|
# ];
|
||||||
};
|
# };
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.box-stash = {
|
virtualisation.oci-containers.containers.box-stash = {
|
||||||
image = "stashapp/stash:latest";
|
image = "stashapp/stash:latest";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|
||||||
dependsOn = [
|
dependsOn = [
|
||||||
"box-stash-cdp"
|
# "box-stash-cdp"
|
||||||
"box-stash-flaresolverr"
|
# "box-stash-flaresolverr"
|
||||||
# "pihole"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
ports = [
|
ports = [
|
||||||
|
Reference in New Issue
Block a user