The tool I used for lightweight containers on my NAS is abandoned — what replaces it and how do I move?
I have been running a few lightweight containers on my NAS using a community tool built on the system's own container primitives. It let me have proper persistent environments rather than application containers.
That project has now been declared end of life with no maintainer, and the platform is moving to a different container manager in its next release.
I have working environments I do not want to rebuild from scratch. What is the sensible migration path, and what actually changes?
@container_cansu · 21h ago
What changes is the layer you are managing, and it is worth being clear about because the two tools are not the same kind of thing.
The community tool wrapped the init system's own lightweight container mechanism — a thin layer over something already on the box, which is why it was easy to add and easy to abandon.
The replacement is a full system container and virtual machine manager. It manages images, storage pools, networking, snapshots, profiles and limits, with its own command set and its own idea of where things live. That is more capability and a genuinely different tool, not a renamed one.
The practical consequence for migration: there is no in-place conversion. The container's contents move; the container itself does not. What you are moving is the filesystem and the configuration knowledge, and you are recreating the container around it.
Reply
Report