This is a fork of nlewo/nix2container. Its
nextbranch is upstreammasterwith the pull requests below merged. All of them are open against the original repository, and the intention is that they are merged there. This fork is not maintained as a separate project: it carries nothing that is not a pull request upstream,mastertracks upstreammaster, and once the pull requests land upstream the fork has no reason to exist.What the merged pull requests change, and why:
- #207: the layers taken from
fromImagerecord their size. Without it, a push had to read the whole blob to learn a number the manifest already carries.- #209: an image with no layers serialises
"layers": []instead ofnull, so every reader of the image JSON can iterate the field without a special case.- #219: with
reproducible = false, each layer tar written to the store held the paths of every layer, not its own. The digests were right; the files were not.- #220:
buildLayer { layersFile }takes a layer split computed by another tool, so the grouping of the closure is an input rather than something nix2container has to decide well for every image. Thestore_layersof nixpkgs'streamLayeredImageis one such input, which gives the same layers asdockerToolsfor the same closure.- #221:
go.podman.io/imagewas imported for one struct, and pulled about a hundred modules with it. A local type reads the one field that was used, and the module graph shrinks from 140 to 42 modules.- #211:
includeStorePaths = falseships the listed paths without their runtime closure, for containers whose/nix/storeis provided at run time. Baking the closure into layers there only duplicates what the mount already has.- #224: building a layer tar allocated a buffer per file and opened every directory; the blob file was written in 512-byte pieces. One pooled buffer and buffered writes make the tar step about a third faster on trees with many small files, with the same bytes.
- #208:
fromImageEnv = truemerges the base image'sEnvthe way nixpkgs'dockerToolsdoes: one entry per variable, the image config's value replacing the base's in place. A base that setsPATHor CUDA variables no longer has to be repeated by hand. Opt-in, so existing images do not change.- #210:
perms.orModeadds permission bits without replacing the mode. A store tree mixes0444and0555files, and "make it writable" withmodealone either drops or grants the execute bit on all of them.- #222:
compressor = "gzip"compresses each layer once, at build time, with deterministic output. The compressed digest is then known before the push, so a repush only asks the registry which blobs it lacks, and every builder produces the same bytes. The cost is store space: the output holds the compressed layers.- #223:
compressor = "zstd", for OCI destinations: faster to produce and smaller than gzip.- #225: gzip layers are compressed with
klauspost/compress, the dependency #223 already brings, at more than twice the speed of the standard library for the same level. The digests change once.- #226:
buildLayer { permsFile }passes a perms list produced by a build, for permissions that live in a store path rather than being known at eval time.--permsalready took a file.- #228: a
permsregex was compiled for every file it was checked against. The two shapes generated perms lists use, an exact path and a subtree, are now matched by string comparison; a path of 42 000 files with 41 entries goes from over half a minute to under three seconds, same digest.- #230: two refactors with no behaviour change: each leaf of the layer graph carries a source it is read through, and the options that shape a layer are one
LayerOptionsstruct, so the next three features are one field each rather than one more positional argument onNewLayers.- #231:
buildLayer { fromTar }takes a tar archive as the content of a store path, with the ownership, modes and modification times of the archive headers. A customisation layer built under fakeroot has those only in the tar it produces; unpacking it into the store throws them away.- #232:
buildLayer { ensureDirs }creates directories at a fixed owner and mode when no source path has them: the/nixand/nix/storeabove a shipped store, which are the parents of the paths, not their content; one a source has is left as it is.- #227:
buildLayer { excludes }leaves subtrees of a store path out of the layer at emission time. Leaving part of a path out used to mean a pruned copy of it, which is a new store path with its own closure.- #229: the layers of an image are compressed in parallel, at most
GOMAXPROCSat a time, with the bytes of each layer unchanged; three large layers take the time of the largest one alone.Two things exist only in this merge, and go upstream with whichever of the pull requests concerned lands second:
--layers-jsonand--compressortogether (NewLayersCompressedFromSplit; #220 and #222 were written independently), and theEnvfield that #208 reads on the type #221 introduced.
{
inputs.nix2container.url = "github:nlewo/nix2container";
outputs = { self, nixpkgs, nix2container }: let
pkgs = import nixpkgs { system = "x86_64-linux"; };
nix2containerPkgs = nix2container.packages.x86_64-linux;
in {
packages.x86_64-linux.hello = nix2containerPkgs.nix2container.buildImage {
name = "hello";
config = {
entrypoint = ["${pkgs.hello}/bin/hello"];
};
};
};
}This image can then be loaded into Docker with
$ nix run .#hello.copyToDockerDaemon
$ docker run hello:latest
Hello, world!
To load and run the bash example image into Podman:
$ nix run github:nlewo/nix2container#examples.bash.copyToPodman
$ podman run -it bash
bash: Bash in/bin/fromImage: Alpine as base imagefromImageManifest: Alpine as base image, from a storedmanifest.json.nginxnonReproducible: with a non reproducible store path :/openbar: set permissions on files (without root nor VM)uwsgi: isolate dependencies in layerslayered: build a layered image as described in this blog post
Function arguments are:
-
name(required): the name of the image. -
tag(defaults to the image output hash): the tag of the image. -
config(defaults to{}): an attribute set describing an image configuration as defined in the OCI image specification. -
copyToRoot(defaults tonull): a derivation (or list of derivations) copied in the image root directory (store path prefixes/nix/store/hash-pathare removed, in order to relocate them at the image/).pkgs.buildEnvcan be used to build a derivation which has to be copied to the image root. For instance, to get bash and coreutils in the image/bin:copyToRoot = pkgs.buildEnv { name = "root"; paths = [ pkgs.bashInteractive pkgs.coreutils ]; pathsToLink = [ "/bin" ]; }; -
fromImage(defaults tonull): an image that is used as base image of this image; usepullImageorpullImageFromManifestto supply this. -
includeStorePaths(defaults totrue): seebuildLayer.includeStorePaths. It applies to the image layers and not to layers added with thebuildImage.layersattribute. -
fromImageEnv(defaults tofalse): keep theEnventries offromImage, the way nixpkgs'dockerToolsdoes: one entry per variable, in order of first appearance, and a variableconfigsets takesconfig's value at the position the base gave it. The other fields of the base configuration are not inherited. -
maxLayers(defaults to1): the maximum number of layers to create. This is based on the store path "popularity" as described in this blog post. Note this is applied on the image layers and not on layers added with thebuildImage.layersattribute. -
compressor(defaults tonull): seebuildLayer.compressor. It applies to the image layers and not to layers added with thebuildImage.layersattribute. -
perms(defaults to[]): a list of file permisssions which are set when the tar layer is created: these permissions are not written to the Nix store.Each element of this permission list is a dict such as
{ path = "a store path"; regex = ".*"; mode = "0664"; }The mode is applied on a specific path. In this path subtree, the mode is then applied on all files matching the regex.
modesets the mode, andorModeadds bits to it. For instance,orMode = "0200";makes the files writable by their owner and keeps their execute bits. With both,modecomes first:{ mode = "0444"; orMode = "0200"; }gives0644. The entries are applied in list order. -
initializeNixDatabase(defaults tofalse): to initialize the Nix database with all store paths added into the image. Note this is only useful to run nix commands from the image, for instance to build an image used by a CI to run Nix builds. -
layers(defaults to[]): a list of layers built with the buildLayer function: if a store path in deps or contents belongs to one of these layers, this store path is skipped. This is pretty useful to isolate store paths that are often updated from more stable store paths, to speed up build and push time.
Pull an image from a container registry by name and tag/digest, storing the
entirety of the image (manifest and layer tarballs) in a single store path.
The supplied sha256 is the narhash of that store path.
Function arguments are:
-
imageName(required): the name of the image to pull. -
imageDigest(required): the digest of the image to pull. -
sha256(required): the sha256 of the resulting fixed output derivation. -
os(defaults tolinux) -
arch(defaults tox86_64) -
tlsVerify(defaults totrue)
Pull a base image from a container registry using a supplied manifest file, and the
hashes contained within it. The advantages of this over the basic pullImage:
- Each layer archive is in its own store path, which means each will download just once and naturally deduplicate for multiple base images that share layers.
- There is no Nix-specific hash, so it's possible update the base image by simply
re-fetching the
manifest.jsonfrom the registry; no need to actually pull the whole image just to compute a new narhash for it.
With this function the manifest.json acts as a lockfile meant to be stored in
source control alongside the Nix container definitions. As a convenience, the manifest
can be fetched/updated using the supplied passthru script, eg:
nix run .#examples.fromImageManifest.fromImage.getManifest > examples/alpine-manifest.json
Function arguments are:
-
imageName(required): the name of the image to pull. -
imageManifest(required): the manifest file of the image to pull. -
imageTag(defaults tolatest) -
os(defaults tolinux) -
arch(defaults tox86_64) -
tlsVerify(defaults totrue) -
registryUrl(defaults toregistry.hub.docker.com)
Note that imageTag, os, and arch do not affect the pulled image; that is
governed entirely by the supplied manifest.json file. These arguments are
used for the manifest-selection logic in the included getManifest script.
If the Nix daemon is used for building, here is how to set up registry authentication.
docker login URLto whatever it is- Copy
~/.docker/config.jsonto/etc/nix/skopeo/auth.json - Make the directory and all the files readable to the
nixbldgroup:sudo chmod -R g+rx /etc/nix/skopeo sudo chgrp -R nixbld /etc/nix/skopeo - Bind mount the file into the Nix build sandbox
extra-sandbox-paths = /etc/skopeo/auth.json=/etc/nix/skopeo/auth.json
Every time a new registry authentication has to be added, update
/etc/nix/skopeo/auth.json file.
For most use cases, this function is not required. However, it could be
useful to explicitly isolate some parts of the image in dedicated
layers, for caching (see the "Isolate dependencies in dedicated
layers" section) or non reproducibility (see the reproducible
argument) purposes.
Function arguments are:
-
deps(defaults to[]): a list of store paths to include in the layer. -
copyToRoot(defaults tonull): a derivation (or list of derivations) copied in the image root directory (store path prefixes/nix/store/hash-pathare removed, in order to relocate them at the image/).pkgs.buildEnvcan be used to build a derivation which has to be copied to the image root. For instance, to get bash and coreutils in the image/bin:copyToRoot = pkgs.buildEnv { name = "root"; paths = [ pkgs.bashInteractive pkgs.coreutils ]; pathsToLink = [ "/bin" ]; }; -
reproducible(defaults totrue): Iffalse, the layer tarball is stored in the store path. This is useful when the layer dependencies are not bit reproducible: it allows to have the layer tarball and its hash in the same store path. -
includeStorePaths(defaults totrue): whenfalse, the layer holds the paths listed indepsandcopyToRoot, but not their runtime closure. The listed paths keep their store paths, so their references must be present at run time, for instance through a/nix/storemounted into the container. Those references are not pushed with the image. dockerTools'streamLayeredImagehas an option with the same name, but it does not ship the store paths. -
maxLayers(defaults to1): the maximum number of layers to create. This is based on the store path "popularity" as described in this blog post. Note this is applied on the image layers and not on layers added with thebuildLayer.layersattribute. -
layersFile(defaults tonull): a JSON file with the layer split to use instead ofmaxLayers: a list of store path lists, one list per layer, in order. Every path of the layer closure (the closure ofdepsandcopyToRoot, withoutignore) must appear in exactly one list, and no other path may appear. This lets the split come from another tool, for instance thestore_layersof theconf.jsonthat nixpkgs'streamLayeredImagewrites. -
compressor(defaults tonull): set it to"gzip"or"zstd"to compress the layers at build time. The compressed blobs are stored in the layer derivation output, and they are pushed as they are, so a push does not tar the store paths again. The compression is deterministic (gzip: level 6, no timestamp, no file name, OS set to 255; zstd: level 3, one encoder goroutine), so the same layer always has the same digest. Only OCI destinations accept zstd layers: use"gzip"fordocker-daemonand for registries that only know the Docker schema 2 media types. The cost is store space: the output holds the compressed layers, not only their JSON description. It requiresreproducible = true. -
perms(defaults to[]): a list of file permisssions which are set when the tar layer is created: these permissions are not written to the Nix store. -
permsFile(defaults tonull): a JSON file holding the listpermswould hold, for permissions computed by a build rather than known at eval time. Exactly one ofpermsandpermsFile. -
fromTar(defaults to[]): a list of{ path = <store path>; tar = <tar archive>; }. The members of the archive are the content of the store path, with the ownership, modes and modification times of the archive headers. This is for a layer built under fakeroot, whose owners and modes exist only in the tar it produces. Entry names are taken relative to the archive root. Hard links, devices and fifos are refused. -
ensureDirs(defaults to[]): a list of{ path = <store path>; dir = "relative/dir"; uid; gid; mode; }. The directory is created at that owner and mode when the source lacks it, for instance/nixand/nix/storeabove a shipped store, which no store path contains; one the source has is left as the source shipped it. -
excludes(defaults to[]): subtrees of a store path left out of the layer, as{ path = <store path>; excludes = [ "share/doc" ... ]; }with paths relative to the store path. The store path is still added with the rest of its content. This avoids a pruned copy of the path, which would be a new store path with a new closure.Each element of this permission list is a dict such as
{ path = "a store path"; regex = ".*"; mode = "0664"; }The mode is applied on a specific path. In this path subtree, the mode is then applied on all files matching the regex.
modesets the mode, andorModeadds bits to it. For instance,orMode = "0200";makes the files writable by their owner and keeps their execute bits. With both,modecomes first:{ mode = "0444"; orMode = "0200"; }gives0644. The entries are applied in list order. -
layers(defaults to[]): a list of layers built with thebuildLayerfunction: if a store path in deps or contents belongs to one of these layers, this store path is skipped. This is pretty useful to isolate store paths that are often updated from more stable store paths, to speed up build and push time. -
ignore(defaults tonull): a store path to ignore when building the layer. This is mainly useful to ignore the configuration file from the container layer. -
metadata(defaults to{ created_by = "nix2container"; }): an attribute set containing this layer'screated_by,authorandcommentvalues
It is possible to isolate application dependencies in a dedicated layer. This layer is built by its own derivation: if storepaths composing this layer don't change, the layer is not rebuilt. Moreover, Skopeo can avoid to push this layer if it has already been pushed.
Let's consider an application printing a conversation. This script
depends on bash and the hello binary. Because most of the changes
concern the script itself, it would be nice to isolate scripts
dependencies in a dedicated layer: when we modify the script, we only
need to rebuild and push the layer containing the script. The layer
containing dependencies won't be rebuilt and pushed.
As shown below, the buildImage.layers attribute allows to
explicitly specify a set of dependencies to isolate.
{ pkgs }:
let
application = pkgs.writeScript "conversation" ''
${pkgs.hello}/bin/hello
echo "Haaa aa... I'm dying!!!"
'';
in
pkgs.nix2container.buildImage {
name = "hello";
config = {
entrypoint = ["${pkgs.bash}/bin/bash" application];
};
layers = [
(pkgs.nix2container.buildLayer { deps = [pkgs.bash pkgs.hello]; })
];
}This image contains 2 layers: a layer with bash and hello closures
and a second layer containing the script only.
In real life, the isolated layer can contains a Python environment or Node modules.
See Nix & Docker: Layer explicitly without duplicate packages! for learning how to avoid duplicate store paths in your explicitly layered images.
The main goal of nix2container is to provide fast rebuild/push
container cycles. In the following, we provide an order of magnitude
of rebuild and repush time, for the uwsgi image.
warning: this is quick and dirty benchmarks which only provide an order of magnitude
We build the container and push the container. We then made a small
change in the hello.py file to trigger a rebuild and a push.
| Method | Rebuild/repush time | Executed command |
|---|---|---|
| nix2container.buildImage | ~1.8s | nix run .#example.uwsgi.copyToRegistry |
| dockerTools.streamLayeredImage | ~7.5s | nix build .#example.uwsgi | docker load |
| dockerTools.buildImage | ~10s | nix build .#example.uwsgi; skopeo copy docker-archive://./result docker://localhost:5000/uwsgi:latest |
Note we could not compare the same distribution mechanisms because
- Skopeo is not able to skip already loaded layers by the Docker daemon and
- Skopeo failed to push to the registry an image streamed to stdin.
nix run .#tests.all
This builds several example images with Nix, loads them with Skopeo, runs them with Podman, and test output logs.
Not that, unfortunately, these tests are not executed in the Nix sandbox because it is currently not possible to run a container in the Nix sandbox.
It is also possible to run a specific test:
nix run .#tests.basic
This library is currently used by the Skopeo nix transport available
in this branch.
For more information, refer to the Go documentation.
For commercial support (customizations, image optimizations and best practices guidance, bug fixes), please contact nlewo at antoine@lewocorp.eu.