UnityDevice
- 0 Posts
- 7 Comments
Joined 1 year ago
Cake day: January 26th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
That sounds heavy and complicated.
It’s neither. A systemd generator just transforms a simple 15 line container text file to a simple 20 line service text file, and then the container lifecycle and dependencies are managed by systemd like any other system or user service.
It’s not tightly coupled to anything. It just ships with a systemd generator allowing you to manage containers, pods or networks with systemd if you want. And lots of people are noticing the benefits of that arrangement.
And somehow more “independent” than arch, when it’s based on arch?
UnityDevice@lemmy.zipto
politics @lemmy.world•Pentagon puts Scouts 'on notice' over DEI and girl-centered policiesEnglish
2·2 months agoRemind me again why these people hate Iran? They seem to have more in common with the dead Ayatollah than anyone else.
UnityDevice@lemmy.zipto
Technology@lemmy.world•Data centers are now hoarding SSDs as hard drive supplies dry upEnglish
2·2 months agoBut at double the price that they were a few months ago.


My friend, a podman container file is a simple tiny ini text file. Behind the scenes it gets converted to a systemd service unit file, which is also an ini text file. The service file has a simple
ExecStartcommand that just callspodman run. Meanwhile podman will just set up an environment and run the container with runc or crun. The whole thing is basically one step above a shell script. I could buildroot a system with this entire stack and it would fit on my wifi router.You’re the one overcomplicating things.