1

Add whats-up-docker service

This commit is contained in:
2023-09-10 11:25:06 +02:00
parent ad0b709537
commit ac26a75640

View File

@ -0,0 +1,27 @@
{
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 = [];
};
}