From 668ac68f2c0d73cd1fd4f2c061144c5133954135 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Wed, 10 Jun 2026 22:20:52 +0200 Subject: [PATCH] Switch to docker_29 docker version 28 is marked insecure. --- modules/docker.nix | 1 + modules/netbird-client.nix | 2 +- modules/traefik-oidc.nix | 2 +- modules/traefik.nix | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/docker.nix b/modules/docker.nix index 2c88d1a..67bb7c7 100644 --- a/modules/docker.nix +++ b/modules/docker.nix @@ -7,6 +7,7 @@ virtualisation = { docker = { enable = true; + package = pkgs.docker_29; daemon.settings = { ipv6 = true; ip6tables = true; diff --git a/modules/netbird-client.nix b/modules/netbird-client.nix index f6429f9..8477d00 100644 --- a/modules/netbird-client.nix +++ b/modules/netbird-client.nix @@ -94,7 +94,7 @@ in { systemd.services."docker-network-webproxy" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; diff --git a/modules/traefik-oidc.nix b/modules/traefik-oidc.nix index 92b1204..c1bff3f 100644 --- a/modules/traefik-oidc.nix +++ b/modules/traefik-oidc.nix @@ -206,7 +206,7 @@ in { }; systemd.services."docker-network-traefik" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; diff --git a/modules/traefik.nix b/modules/traefik.nix index 7f4ef6b..322c190 100644 --- a/modules/traefik.nix +++ b/modules/traefik.nix @@ -112,7 +112,7 @@ in { }; systemd.services."docker-network-traefik" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; }; @@ -122,7 +122,7 @@ in { }; systemd.services."docker-network-docker-socket" = { - path = [ pkgs.docker ]; + path = [ pkgs.docker_29 ]; serviceConfig = { Type = "oneshot"; };