blob: a4406d7c5c59da42fa4cebef68f921abd41fc7bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, ... }:
{
virtualisation.oci-containers.containers.uptime-kuma = {
inherit (config.modules.containers) extraOptions;
image = "louislam/uptime-kuma";
autoStart = true;
ports = [ "127.0.0.1:8099:3001" ];
volumes = [ "/mnt/docker/uptime-kuma:/app/data" ];
};
}
|