summaryrefslogtreecommitdiffstats
path: root/nixos/tests/docker.nix
diff options
context:
space:
mode:
authorRagnar Dahlén <r.dahlen@gmail.com>2015-09-04 00:18:19 +0100
committerRagnar Dahlén <r.dahlen@gmail.com>2015-09-04 00:23:38 +0100
commit9bfe92ecee3359576093cfb534adbec13dcbd580 (patch)
tree7ed3f742aaf4cb645c28d0172f3a83687a1c6043 /nixos/tests/docker.nix
parent66429fa043cd9e2a92ab855a3c16b5b34168ca0c (diff)
docker: Minor improvements, fix failing test
- Replace usage of deprecated CLI flag `--daemon` - Introduce `storageDriver` option for module - Fix failing test by using `overlay` storage driver
Diffstat (limited to 'nixos/tests/docker.nix')
-rw-r--r--nixos/tests/docker.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/tests/docker.nix b/nixos/tests/docker.nix
index babb2b8e00eb..034dcb04adfd 100644
--- a/nixos/tests/docker.nix
+++ b/nixos/tests/docker.nix
@@ -11,6 +11,7 @@ import ./make-test.nix ({ pkgs, ...} : {
{ config, pkgs, ... }:
{
virtualisation.docker.enable = true;
+ virtualisation.docker.storageDriver = "overlay";
};
};