1

ThinkNix: Add whats-up-docker

This commit is contained in:
2025-01-29 17:49:11 +01:00
parent 9c568262ca
commit 261bfe95c9
2 changed files with 30 additions and 0 deletions

View File

@ -19,6 +19,7 @@
# ./services/kopia.nix
./services/nginx-proxy-manager.nix
./services/portainer.nix
./services/whats-up-docker.nix
./services/wireguard.nix
];

View File

@ -0,0 +1,29 @@
{
config,
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.whats-up-docker = {
image = "fmartinou/whats-up-docker:latest";
autoStart = true;
dependsOn = [
# "pihole"
];
ports = [
# "3001:3000"
];
volumes = [
"/var/run/docker.sock:/var/run/docker.sock"
];
environment = {};
extraOptions = [
"--net=behind-nginx"
];
};
}