nix-dotfiles/systems/jeeves/docker/uptime_kuma.nix

15 lines
335 B
Nix
Raw Normal View History

2024-07-05 10:49:52 -04:00
let
vars = import ../vars.nix;
in
{
virtualisation.oci-containers.containers = {
uptime_kuma = {
image = "louislam/uptime-kuma:latest";
ports = [ "3001:3001" ];
volumes = [ "${vars.media_docker_configs}/uptime_kuma:/app/data" ];
extraOptions = [ "--network=web" ];
autoStart = true;
};
};
}