Difference between revisions of "Workgroup:Container"

From NixOS Wiki
Jump to: navigation, search
(Add list of docker images from https://discourse.nixos.org/t/nixos-docker-images-are-quite-old/172/4)
(Add warning about the new wiki)
Line 1: Line 1:
 +
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Workgroup:Container.}}
 +
 
We are interested in directly building (minimal) OCI containers from the nixpkgs ecosystem.
 
We are interested in directly building (minimal) OCI containers from the nixpkgs ecosystem.
  

Revision as of 06:59, 5 April 2024

Warning: You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Workgroup:Container.

We are interested in directly building (minimal) OCI containers from the nixpkgs ecosystem.

People

Tooling

Nix images

There are a few images that contain Nix with various trade-offs:

  • nixos/nix (source) - 77 MB - Official images based on alpine using a Dockerfile. Not updated automatically.
  • nixorg/nix (source) - 84 MB - Batteries included by the Nix Community group also based on a Dockerfile but only using Nixpkgs dependencies. Images are automatically built from master.
  • lnl7/nix/ (source) - 57 MB - Images built out of a Nix derivation.

Interesting threads

Work In Progress

  • Improve image storage in the Nix store

https://github.com/projectatomic/skopeo/issues/481


Projects

Self-Hosted, Minimal Docker/OSI Images

For our platform at Techcultivation we want to generate docker images for all parts of our system. Those images should come in two flavors, development (to quickly spin up local test services, with mock data) and deployment (secure/production-ready). We chose to generate these images purely out of nixpkgs code, so no binary (base) images have to be included.

The current version of the deployment code can be found on our Gitlab.

A basic (pretty messy) postgres image is already done, complete with in-build setup of a mock database. The resulting image is smaller than the “official” one in the docker registry, only uses nixpkgs-native dependencies and only contains the most minimal filetree needed to run the postgres binary.

Still to do: rabbitmq, frontend code, api, refactor, various others.

Profpatsch (talk) 02:47, 10 February 2018 (UTC)