fix(docker): force global dns and update jfa

This commit is contained in:
matt1432 2024-07-28 00:44:09 -04:00
parent a8a278202c
commit 8ebc6de43e
5 changed files with 31 additions and 23 deletions
modules/docker

View file

@ -28,7 +28,12 @@ in {
docker = {
enable = true;
storageDriver = "btrfs";
package = pkgs.docker_27;
daemon.settings.dns = ["8.8.8.8" "1.1.1.1"];
};
# khepri uses oci-containers under the hood and it must be set to docker to work
oci-containers.backend = "docker";
};