Merge pull request #14767 from nathan7/docker-optional-graphdrivers
docker: allow disabling btrfs and devicemapper
This commit is contained in:
commit
d83c0c4a02
@ -27,7 +27,9 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
|
|
||||||
DOCKER_BUILDTAGS = [ "journald" ];
|
DOCKER_BUILDTAGS = [ "journald" ]
|
||||||
|
++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs"
|
||||||
|
++ optional (devicemapper == null) "exclude_graphdriver_devicemapper";
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
patchShebangs .
|
patchShebangs .
|
||||||
|
Loading…
x
Reference in New Issue
Block a user