mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
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:
parent
cd6b650cc0
commit
c14ec3582e
@ -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";
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user