nixos/tests/docker-tools-overlay: fix test

- change `virtualisation.docker.storageDriver` from deprecated `overlay`
to `overlay2`. Using `overlay` dockerd fails to start with error:
`ERROR: the overlay storage-driver has been deprecated and removed`
https://docs.docker.com/engine/deprecated/#legacy-overlay-storage-driver
This commit is contained in:
ghpzin 2024-10-12 13:40:38 +03:00
parent cd6b650cc0
commit c14ec3582e

View File

@ -12,7 +12,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
{ ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "overlay"; # defaults to overlay2
virtualisation.docker.storageDriver = "overlay2";
};
};