snowflake/hosts/sakura/services/justlog.nix

12 lines
372 B
Nix
Raw Normal View History

2023-12-22 23:48:07 -05:00
_: {
2023-12-15 08:25:01 -05:00
networking.firewall.allowedTCPPorts = [8025];
virtualisation.oci-containers.containers.justlog = {
2024-02-01 11:46:02 -05:00
image = "ghcr.io/gempir/justlog@sha256:44b2426c0057b44019b78b1daece13dac2356ff68f9f506f067c8c4c92f54f22";
2023-12-15 08:25:01 -05:00
ports = ["8025:8025"];
volumes = [
"/home/notoh/justlog/config.json:/etc/justlog.json"
"/home/notoh/justlog/logs:/logs"
];
};
}