add regexmanager for docker inside of nix
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Vivian 2023-02-04 16:40:01 +01:00
parent 400d322454
commit 6ca5a4eb40
3 changed files with 80 additions and 75 deletions

View file

@ -109,30 +109,29 @@
default = colmena.packages.${system}.colmena; default = colmena.packages.${system}.colmena;
iso = nixos-generators.nixosGenerate { # iso = nixos-generators.nixosGenerate {
inherit system pkgs; # inherit system pkgs;
format = "iso"; # format = "iso";
modules = [ (import ./nixos/templates/iso.nix) ]; # modules = [ (import ./nixos/templates/iso.nix) ];
}; # };
iso-graphical = nixos-generators.nixosGenerate { # iso-graphical = nixos-generators.nixosGenerate {
inherit system pkgs; # inherit system pkgs;
format = "iso"; # format = "iso";
modules = [ (import ./nixos/templates/iso-graphical.nix) ]; # modules = [ (import ./nixos/templates/iso-graphical.nix) ];
}; # };
proxmox-lxc = nixos-generators.nixosGenerate { # proxmox-lxc = nixos-generators.nixosGenerate {
inherit pkgs; # inherit pkgs;
format = "proxmox-lxc"; # format = "proxmox-lxc";
modules = [ (import ./nixos/templates/proxmox-lxc.nix) ]; # modules = [ (import ./nixos/templates/proxmox-lxc.nix) ];
}; # };
# Currently broken as it assumes `local-lvm` exists # proxmox-vm = nixos-generators.nixosGenerate {
proxmox-vm = nixos-generators.nixosGenerate { # inherit system pkgs;
inherit system pkgs; # format = "proxmox";
format = "proxmox"; # modules = [ (import ./nixos/templates/proxmox-vm.nix) ];
modules = [ (import ./nixos/templates/proxmox-vm.nix) ]; # };
};
}; };
# Use by running `nix develop` # Use by running `nix develop`

View file

@ -54,5 +54,12 @@ data:
"ghcr.io/fluxcd/kustomize-controller", "ghcr.io/fluxcd/kustomize-controller",
"ghcr.io/fluxcd/notification-controller", "ghcr.io/fluxcd/notification-controller",
"ghcr.io/fluxcd/source-controller" "ghcr.io/fluxcd/source-controller"
],
"regexManagers": [
{
"fileMatch": [".+\\.nix"],
"matchStrings": ["image\\s*=\\s*"(?<depName>.*?):(?<currentValue>.*?)"\\s*;\\s*"],
"datasourceTemplate": "docker"
}
] ]
}; };

View file

@ -26,8 +26,7 @@
backend = "podman"; backend = "podman";
containers = { containers = {
overseerr = { overseerr = {
# TODO: Add regex so that renovate catches this image = "ghcr.io/sct/overseerr:1.32.4";
image = "ghcr.io/sct/overseerr:1.32.5";
environment = { environment = {
# LOG_LEVEL = "debug"; # LOG_LEVEL = "debug";
TZ = "Europe/Amsterdam"; TZ = "Europe/Amsterdam";