nixery VS nix2container

Compare nixery vs nix2container and see what are their differences.

nixery

Container registry which transparently builds images using the Nix package manager. Canonical repository is https://cs.tvl.fyi/depot/-/tree/tools/nixery (by tazjin)

nix2container

An archive-less dockerTools.buildImage implementation (by nlewo)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
nixery nix2container
18 9
1,685 430
- -
4.8 6.3
2 months ago 10 days ago
Go Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

nixery

Posts with mentions or reviews of nixery. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-19.

nix2container

Posts with mentions or reviews of nix2container. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-15.
  • Nix is a better Docker image builder than Docker's image builder
    21 projects | news.ycombinator.com | 15 Mar 2024
    No discussion about Nix-built containers is complete with nix2container:

    https://github.com/nlewo/nix2container

    It is truly magical for handling large, multi-layered containers. Instead of building the container archives themselves and storing them in the nix store, it builds a JSON manifest that is consumed by a lightly patched version of skopeo that streams the layers directly to either your local container engine or the registry.

    This means you never rebuild or reupload a container layer that is unchanged.

  • Way to get NVM working in CI/CD systems
    6 projects | news.ycombinator.com | 19 May 2023
    - Container images are built with https://github.com/nlewo/nix2container instead of Nix's built-in docker tools, because nix2container allows configuration of layers and thus makes it easier to share layers between images and improve layer caching.

    As for integrating it into our CI pipeline, this is pretty much CI system agnostic as all you have to do is run `nix build ...` inside the pipeline, generating a `result` directory or file as an artifact that, in the case of nix2container, can be pushed to your container image registry.

  • How do I create a docker image for postgres with nix?
    4 projects | /r/NixOS | 10 Mar 2023
    dockerTools is the canonical way, but https://github.com/nlewo/nix2container seems to be gaining support as it's faster and doesn't use so much disk space while building.
  • We deploy 5X faster with warm Docker containers
    3 projects | news.ycombinator.com | 7 Mar 2023
    > The key factor behind our decision was the realization that while Docker images are industry standard, moving around 100s of megabytes of images seems unnecessarily heavy-handed when we just need to synchronize a small change.

    I think the culprit is more the GitHub Actions cache than Docker since it seems to be hard to get a clean cache management. I'm not sure about caching Docker image layers, but caching the Nix store with GitHub Actions is pretty complicated (not even sure it's possible): this means we have to download all required Nix store paths on each run, but i consider this is because of a GitHub Action cache limitation.

    So, did you consider using another CI, which offers better caching mechanisms?

    With a CI able to preserve the Nix store (Hydra[1] or Hercules[2] for instance), I think nix2container (author here) could also fit almost all of your requirements ("composability", reproducibility, isolation) and maybe provide better performances because it is able to split your application into several layers [2][3].

    Note i'm pretty sure a lot of Docker CI also allows to efficiently build Docker images.

    [1] https://hercules-ci.com/

    [2] https://grahamc.com/blog/nix-and-layered-docker-images

    [3] https://github.com/nlewo/nix2container/blob/85670cab354f7df6...

  • Launch HN: Depot (YC W23) – Fast Docker Images in the Cloud
    6 projects | news.ycombinator.com | 22 Feb 2023
    FYI, the nix2container [1] project (author here) aims to speedup the standard Nix container workflow (dockerTools.buildImage) by basically skipping the tarball step: it directly streams non already pushed layers.

    [1] https://github.com/nlewo/nix2container

  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    To get Rust incremental builds, did you consider using something such as crane https://github.com/ipetkov/crane ?

    And regarding OCI images, i built nix2container (https://github.com/nlewo/nix2container) to speed up image build and push times.

  • Optimising Docker Layers for Better Caching with Nix (2018)
    2 projects | news.ycombinator.com | 11 Sep 2022
    For a more modern iteration of that idea, check out https://github.com/nlewo/nix2container

    It has all the benefits of OP but produces the images much faster, and with less on-disk usage.

  • Nixpacks takes a source directory and produces an OCI compliant image
    7 projects | news.ycombinator.com | 17 Aug 2022
    I've been using nix2container[1] for awhile now. It looks like this depends on Docker, have you guys considered removing that dependency? It shouldn't be necessary to create an OCI compliant image with Nix.

    [1]: https://github.com/nlewo/nix2container

  • Nixery – Docker images on the fly with Nix
    8 projects | news.ycombinator.com | 18 Apr 2022
    With https://github.com/nlewo/nix2container, I'm trying to make a more standalone tool. Basically, a Go binary takes a reference graph and produces a JSON file describing a container image. This JSON file is then ingested by a Skopeo fork (it adds a new `transport`) to produce images (to file, registries,...).

    Currently, it supports the dockerTools layering algorithm and is designed to work with Guix [1] as well;)

    [1] https://github.com/nlewo/nix2container/blob/065e5b108650ee4c...

What are some alternatives?

When comparing nixery and nix2container you can also consider the following projects:

BirdNET-Pi - A realtime acoustic bird classification system for the Raspberry Pi 4B, 3B+, and 0W2 built on the TFLite version of BirdNET.

naersk - Build Rust projects in Nix - no configuration, no code generation, no IFD, sandbox friendly.

template-nix - The nix template, configured for Gitpod (www.gitpod.io) to give you pre-built, nix based ephemeral development environments in the cloud.

crate2nix - rebuild only changed crates in CI with crate2nix and nix

niv - Easy dependency management for Nix projects

nixpacks - App source + Nix packages + Docker = Image

jib - 🏗 Build container images for your Java applications.

plane - A distributed system for running WebSocket services at scale.

plural - Deploy open source software on Kubernetes in record time. 🚀

Moby - The Moby Project - a collaborative project for the container ecosystem to assemble container-based systems

cargo2nix - Granular builds of Rust projects for Nix