1
0
Fork 0

watchtower: send notifcations via ntfy

This commit is contained in:
Daniel Kempkens 2023-03-12 22:39:27 +01:00
parent 5232858822
commit fba636d19a
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
5 changed files with 5 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View file

@ -14,7 +14,7 @@ in
../nixos/git.nix
../nixos/arion.nix
(import ../nixos/arion.nix (args // { inherit secret; }))
../../container/adsb
];

View file

@ -39,7 +39,7 @@ in
(import ../nixos/tailscale.nix (args // { inherit secret; }))
../nixos/arion.nix
(import ../nixos/arion.nix (args // { inherit secret; }))
../../container/webserver
../../container/matrix
../../container/proxitok

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, secret, ... }:
{
environment.systemPackages = [
@ -22,6 +22,8 @@
environment = {
WATCHTOWER_POLL_INTERVAL = "28800";
WATCHTOWER_LABEL_ENABLE = "true";
WATCHTOWER_NOTIFICATIONS = "shoutrrr";
WATCHTOWER_NOTIFICATION_URL = secret.watchtower.ntfyUrl;
};
volumes = [
"/var/run/docker.sock:/var/run/docker.sock"