this post was submitted on 20 Feb 2025
340 points (98.9% liked)
unix_surrealism
2154 readers
68 users here now
one should not chase the electric dream
This community is for sharing original content related to computers, content, surrealism and wizardry.
Now that you're a surrealist, become a Techno-Mage:
- https://openbsd.org/
- https://freebsd.org/
- https://netbsd.org/
- https://dragonflybsd.org/
- https://9front.org/
- https://100r.co/site/uxn.html
- https://distrowatch.org/
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Kinda. I think it's definitely true that docker is used as a distro-agnostic package manager for services, and if we only had one distro we might not need that.
It should be noted that projects like cosmo attempt to make things portable to and across BSD's as well as Linux's, so people definitely want distro agnostic packages (or a package manager), even on the BSD operating systems.
However, on the other end, docker is also powerful because it (and tools that use docker containers, like kubernetes), orchestrate services and allow people to bring them up very, very quickly. Like, to bring up a service called pairdrop, I just take this file:
and type
docker-compose up -d
. And it's really quick, and arguably only possible due to the way containers are isolated and it's easy to create and destroy them. There exist solutions for automation and scripting like ansible, but they just aren't as good as the container solutions for automatically putting services up.