Files
nixos-config/servers/hetzner/modules/services/shkeeper.nix
T
jory c5f771bd53
CI / Formatting check (x86_64-linux) (push) Has been cancelled
CI / Flake check (aarch64-linux) (push) Has been cancelled
CI / Flake check (x86_64-linux) (push) Has been cancelled
CI / Formatting check (aarch64-linux) (push) Has been cancelled
Added hetzner server configs
2026-07-11 20:28:51 +02:00

24 lines
480 B
Nix

{
config,
pkgs,
lib,
...
}: {
virtualisation.oci-containers.containers.shkeeper = {
image = "vsyshost/shkeeper:2.5.29";
autoStart = true;
ports = ["5000:5000"];
volumes = [
"/home/admin/shkeeper-data:/app/data:Z"
];
environment = {
SHKEEPER_HOST = "0.0.0.0";
SHKEEPER_PORT = "5000";
};
extraOptions = [
"--env-file=/home/admin/shkeeper.env"
"--label=com.centurylinklabs.watchtower.enable=true"
];
};
}