Тёмный

Nix-powered Docker Containers 

OpenTechLab
Подписаться 29 тыс.
Просмотров 24 тыс.
50% 1

Nix is a powerful package manager for UNIX-like systems powered by a functional programming language. In this video, look at the benefits of usingt Nix to generate Docker container images
Show Notes: opentechlab.org.uk/videos:022...

Наука

Опубликовано:

 

20 мар 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 45   
@chai116
@chai116 Год назад
I'm fully onboard with the Nix way. It's a big improvement! But one thing I'm still concerned with when discussing "reproducibility years into the future"-- and that's the source files. If you can't get derivations from the binary cache, often the fallback is building from source, and those sources can still disappear from the internet. The github repo could be deleted, or a server could change a base url, etc. It would be great to be able to vendor sources when that's desired.
@MarkRuvald
@MarkRuvald Год назад
True. That's why nix has the concept of substitutors. URL fetchers also allow for a list of mirrors. Finally there is work in progress for IPFS.
@chai116
@chai116 Год назад
@@MarkRuvald that sounds awesome!
@RichardJActon
@RichardJActon Год назад
Yes a flag that takes a snapshot of all the source dependency repos at the commits used and bundles them up along the lock file so that you can always rebuild from source, assuming no bootstrapping issues, would be awesome. Then a flag to point to this bundle to use in place of the regular repos.
@DerekMurawsky
@DerekMurawsky 10 месяцев назад
A transparent caching feature would be amazing. Allowing you to cache on a set of servers on-prem so you can manage the lifecycles yourself.
@matthewstott3493
@matthewstott3493 4 месяца назад
If you are dealing with legacy near obsolete software, you are likely better suited to mirroring the source and creating your own pkg cache. You don't have to grab packages from nixpkgs you could manage the packages yourself. Re-using already built pkgs.
@Ancipital_
@Ancipital_ Год назад
I can see why people really love this channel. Great explanations. Cheers!
@MartinCooney1
@MartinCooney1 9 месяцев назад
thanks so much for the detailed video. saved to use and review later. thanks again. more videos on Nix please are always welcome
@aliabdulla2702
@aliabdulla2702 Год назад
I am very happy to see you again. good luck.👍
@jandillingh
@jandillingh Год назад
I'm really enjoying this new style of video. You're surprisingly good on camera imo :)
@OpenTechLab
@OpenTechLab Год назад
I'm glad you're enjoying it. Screencasts can easily become quite dull, so when I'm talking about software, hopefully I can keep it interesting with lots of hands-on action and visual interest.
@iriolavagno4060
@iriolavagno4060 10 месяцев назад
Very useful, thanks. After trying it for a few months I finally switched to NixOS in all my development enviroments. I'm still fine-tuning all the dev tools and stuff, and this video is a treasure trove of cool ideas and precious information.
@bereknyei
@bereknyei Год назад
I've been looking at some enhancements to the nix to container conversions where one would have greater control over the layers and how they were composed. Another angle is to teach the container ecosystem about "nix layers" that are known to be non-conflicting, and thus don't have the performance overhead of overlayfs, limit to 128 layers, can be processed in parallel, etc.
@IndigoVFX
@IndigoVFX Год назад
I’m sure I’m not alone in saying anything you find in that process would be of great interest to the wider community.
@fabianotto7749
@fabianotto7749 Год назад
awesome content, explained a lot of things I did not grok before by reading blog posts. I would suggest to setup you editor with syntax highlighting, it helps reading the nix code for the untrained eye. Please make more videos
@DrKnow65
@DrKnow65 Год назад
I am so glad you are following up with Nix again, I have not made the time yet to pour into a deeper understanding. I am curious about the size of programs if they need to bring along their own dependencies, how much Nix relies on internet access, and how it would work if one wanted to modify a package to use an additional library (say for a specific sensor in a logging app).
@OpenTechLab
@OpenTechLab Год назад
Yeah I'll definitely do a few more videos about Nix, and I'll keep these topics in mind.
@bereknyei
@bereknyei Год назад
When in the container world; the dependencies will be there no matter what. The nice thing about Nix-based and built containers is that their runtime is automatically minimized. This removes all the build environment pieces from the container leaving only that which is necessary for runtime.
@andreaszweili8593
@andreaszweili8593 11 месяцев назад
Nice video. What I really haven’t seen so far is packaging something like a Django or Drupal application and put that for example into a container. Especially if one doesn’t use tools like poetry2nix but rather runs poetry directly. Most of the stuff is just, here is how to package this basic C library.
@The1zacops
@The1zacops Год назад
Thanks for showing a highly informative, yet no boiler plate, nix tutorial
@oussamasethoum1665
@oussamasethoum1665 Год назад
You start building your app now, you finish it in 2099 with this stack.
@CarlosReyes-ku6ub
@CarlosReyes-ku6ub Год назад
Love Nix
@IndigoVFX
@IndigoVFX Год назад
Great content, great style. I do wonder how long Nix is going to keep Flakes marked as experimental … but I agree they’re the future. I need to dive in more though. As to the idea these images can be built for years to come, someone else in the comments touched on this but if the cache were no longer around Nix automatically goes back to sources (e.g. GitHub) … but for absolute certainty of longevity maybe you could cover automating the process of cloning sources or caches onto your own infrastructure internally and building from there? Exact replica and reproducible builds are a huge thing where finance is concerned of course.
@matthewstott3493
@matthewstott3493 4 месяца назад
For dev environments, tooling, languages, libraries, etc. You don't need to create a Docker container to accomplish things locally. For example, you can setup direnv and put a flake.nix in your project repo. When you clone the repo and change to the project directory, the flake will be run to install just what you need for the project. When you exit the project directory, the environment self-destructs and the /nix/store packages are dereferenced. When you go back into the project it will load the already installed dev env near instantly. This allows to have various incompatible environments that would not play together nicely and switch between them. You can also just spin up a nix-shell with the tooling you need. Meanwhile, building containers with Nix is still viable and useful to spin up containers in Kubernetes, etc.
@ultravioletiris6241
@ultravioletiris6241 3 месяца назад
Thanks for the tip. Just checked out direnv and its really neat.
@adjbutler
@adjbutler 10 месяцев назад
this is so funny... I was following along (~6 months after this video was launched) and the Dockerfile build completely failed and I gave up trying to get it to work. But the nix way worked (after a simple syntax fix of adding a missing ')' to the flake.nix file. After that nix worked "one-shot" basically. Wow, docker confirmed not reproducible but nix is!
@THEMithrandir09
@THEMithrandir09 2 месяца назад
I'm all for nix, weirdly it's better at building docker images than dodcker. However, it should be mentioned that you CAN specify a hash instead of a tag in dockerfiles.
@csilipo
@csilipo 4 месяца назад
how do you access the Website from this Video? Tried a few times, will not let me in. Carlo ( PS no register link)
@blender_wiki
@blender_wiki 11 месяцев назад
This very very useful on how convince a manger to pay you a huge bill for you consulting for something that probably he don't need. 😅😅😅
@evelynescalona7267
@evelynescalona7267 Год назад
what about how to update nixos? thanks!!!
@peterromfeld4091
@peterromfeld4091 Год назад
its kinda over complicated, i dont understand the benefits of flakes if its not nixos configuration.nix, you can just pin the package tree and if you really need add overlays. ive been building my containers with nix for the last 6 years ;)
@slickheisenberg8208
@slickheisenberg8208 6 месяцев назад
I really want to like the nix approach, but the declarative nature of a Dockerfile is so much more readable and accessible. The Nix approach seems to overcomplicate things significantly. Maybe this cool for weekend projects, but I see the risk of wasted developers hours trying to understand the intricacies of nix, that would be quite straightforward and well documented in Docker. Add the really bad documentation of nix and you realize that any CTO pushing nix in a productive environment will be cursed by devs that want to work on code not waste their time on their tooling. There’s no wonder Shopify abandoned its nixos experiments.
@adammontgomery7980
@adammontgomery7980 7 месяцев назад
Can't you just replace docker with flakes? I thought that was possible.
@skirnir393
@skirnir393 Год назад
It sounds cool on paper, but I don't think it's worth it. Man, you go from 8 lines of readable statements to more than 60 lines of gibberish. Really the syntax is ungodly . Thanks for the video.
@BraxtonMeyer
@BraxtonMeyer Год назад
hey otl, it's pronounced Scipio, like the roman dictator.
@Babbili
@Babbili Год назад
I build a jenkins docker image with nix, it wss 1.7GB 😆😆
@OpenTechLab
@OpenTechLab Год назад
Yes quite large. It would be interesting to see what is being pulled in. For example, the JRE might be pulling in the graphical desktop stack. It is usually possible to override that sort of thing.
@nevgeniev
@nevgeniev 11 месяцев назад
number of layers simply unacceptable ;((
@maixicek
@maixicek Год назад
So it is just matter if you trust ubuntu or if you trust nix 🤣Cause dockerfile is clearly more readable and you admit it. This comparison example is not good. Like you can easily solve it by uploading your build docker image somewhere - and trust yourself that you not gonna delete it nor change it - that is when tagging and sha1 hashes comes handy, cause tag latest feels not stable. Nix is nice for that development thingy but as a docker container replacement I think no.
@andreaszweili8593
@andreaszweili8593 11 месяцев назад
No it’s not about trust with Nix. With the Flake lock file you get the exact same version. When you rebuild the Ubuntu image you might have the base image pinned but what happens in the RUN steps can be different every single time. Unless you know how to exactly pin every apt package etc. With Nix this is already built in and each package brings its own isolated dependency tree which helps further with reducing problems. In short if you rebuild the Nix image a few months later you get the exact same image including all the bugs that were present at that time. When you rebuild the Ubuntu image you will get a similar image but at minimum a lot of the packages got changed because of security updates. The changes might be small in an LTS but they are there and you hope that it still works.
@trejohnson7677
@trejohnson7677 Год назад
I hope to hell you won’t be building these images years from now.
@richtigmann1
@richtigmann1 Год назад
why is that?
@mskiptr
@mskiptr Год назад
@@richtigmann1 Security vulnerabilities are a thing.
@0netom
@0netom 7 месяцев назад
you might still need to run something old, when you are trying to modernize it and you want to compare how did the old thing worked. also, not everything runs on the public internet, so security vulnerabilities might not be a problem.
@lomenzel
@lomenzel Месяц назад
8:55 i added (writeTextDir "tmp/nginx_client_body/.placeholder" "") to contents, because nginx seemd to refuse to work without the tmp directory
Далее
Getting Started with Nix
25:49
Просмотров 66 тыс.
Советы на всё лето 4 @postworkllc
00:23
Is Nix Your New Terminal SUPERPOWER?
15:21
Просмотров 19 тыс.
Docker and Nix (DockerCon 2023)
48:09
Просмотров 10 тыс.
The intro to Docker I wish I had when I started
18:27
NixOS Has One BIG Problem
17:48
Просмотров 66 тыс.
100+ Docker Concepts you Need to Know
8:28
Просмотров 893 тыс.
Nix Language Explained
8:54
Просмотров 15 тыс.