mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
Format
This commit is contained in:
parent
b5389e2ae9
commit
1a70c803cb
2 changed files with 12 additions and 7 deletions
|
@ -6,16 +6,21 @@ in
|
||||||
{
|
{
|
||||||
name = "docker-tools-nix-shell";
|
name = "docker-tools-nix-shell";
|
||||||
meta = with lib.maintainers; {
|
meta = with lib.maintainers; {
|
||||||
maintainers = [ infinisil roberth ];
|
maintainers = [
|
||||||
|
infinisil
|
||||||
|
roberth
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
docker = { ... }: {
|
docker =
|
||||||
virtualisation = {
|
{ ... }:
|
||||||
diskSize = 3072;
|
{
|
||||||
docker.enable = true;
|
virtualisation = {
|
||||||
|
diskSize = 3072;
|
||||||
|
docker.enable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
|
|
|
@ -60,7 +60,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
nonRootTestImage =
|
nonRootTestImage =
|
||||||
pkgs.dockerTools.streamLayeredImage rec {
|
pkgs.dockerTools.streamLayeredImage {
|
||||||
name = "non-root-test";
|
name = "non-root-test";
|
||||||
tag = "latest";
|
tag = "latest";
|
||||||
uid = 1000;
|
uid = 1000;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue