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;
iso = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "iso";
modules = [ (import ./nixos/templates/iso.nix) ];
};
# iso = nixos-generators.nixosGenerate {
# inherit system pkgs;
# format = "iso";
# modules = [ (import ./nixos/templates/iso.nix) ];
# };
iso-graphical = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "iso";
modules = [ (import ./nixos/templates/iso-graphical.nix) ];
};
# iso-graphical = nixos-generators.nixosGenerate {
# inherit system pkgs;
# format = "iso";
# modules = [ (import ./nixos/templates/iso-graphical.nix) ];
# };
proxmox-lxc = nixos-generators.nixosGenerate {
inherit pkgs;
format = "proxmox-lxc";
modules = [ (import ./nixos/templates/proxmox-lxc.nix) ];
};
# proxmox-lxc = nixos-generators.nixosGenerate {
# inherit pkgs;
# format = "proxmox-lxc";
# modules = [ (import ./nixos/templates/proxmox-lxc.nix) ];
# };
# Currently broken as it assumes `local-lvm` exists
proxmox-vm = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "proxmox";
modules = [ (import ./nixos/templates/proxmox-vm.nix) ];
};
# proxmox-vm = nixos-generators.nixosGenerate {
# inherit system pkgs;
# format = "proxmox";
# modules = [ (import ./nixos/templates/proxmox-vm.nix) ];
# };
};
# Use by running `nix develop`

View file

@ -54,5 +54,12 @@ data:
"ghcr.io/fluxcd/kustomize-controller",
"ghcr.io/fluxcd/notification-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";
containers = {
overseerr = {
# TODO: Add regex so that renovate catches this
image = "ghcr.io/sct/overseerr:1.32.5";
image = "ghcr.io/sct/overseerr:1.32.4";
environment = {
# LOG_LEVEL = "debug";
TZ = "Europe/Amsterdam";