59 lines
1.7 KiB
Plaintext
59 lines
1.7 KiB
Plaintext
{ config, pkgs, ... }:
|
|
|
|
let
|
|
container_name = "adguard";
|
|
compose_file = "podman/adguard/compose.yaml";
|
|
config_dir = "/mnt/config/adguard";
|
|
in
|
|
|
|
{
|
|
config = {
|
|
environment.etc."${compose_file}".text =
|
|
/*
|
|
yaml
|
|
*/
|
|
''
|
|
'';
|
|
|
|
systemd.services."${container_name}" = {
|
|
description = "Podman container : ${container_name}";
|
|
after = [ "network.target" ];
|
|
requires = [ "traefik.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
path = [ pkgs.podman pkgs.coreutils ];
|
|
|
|
serviceConfig = {
|
|
User = "numbus-admin";
|
|
Environment = [ "XDG_RUNTIME_DIR=/run/user/1000" ];
|
|
Type = "exec";
|
|
TimeoutStartSec = "600";
|
|
ExecStartPre = [
|
|
"${pkgs.bash}/bin/bash -c 'sleep $((RANDOM % 180))'"
|
|
"-${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} pull"
|
|
];
|
|
ExecStart = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} up --remove-orphans";
|
|
ExecStop = "${pkgs.podman-compose}/bin/podman-compose -f /etc/${compose_file} down";
|
|
Restart = "on-failure";
|
|
RestartSec = "5m";
|
|
StartLimitBurst = "3";
|
|
};
|
|
};
|
|
|
|
systemd.services."update-${container_name}" = {
|
|
description = "Update ${container_name} container";
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.systemd}/bin/systemctl restart ${container_name}.service";
|
|
};
|
|
};
|
|
|
|
systemd.timers."update-${container_name}" = {
|
|
timerConfig = {
|
|
OnCalendar = "02:00";
|
|
RandomizedDelaySec = "60m";
|
|
Unit = "update-${container_name}.service";
|
|
};
|
|
wantedBy = [ "timers.target" ];
|
|
};
|
|
};
|
|
} |