It doesn’t really matter if there are truly open-source and open ecosystems of containerization technologies because in the end people/companies will pick the proprietary / closed option just because “it’s easier to use” or some other specific thing that will be good on the short term and very bad on the long term. This happened with CentOS vs Debian is currently unfolding with Docker vs LXC/RKT/Podman and will happen with Ubuntu vs Debian for all those who moved from CentOS to Ubuntu.
Comment on Why docker
beta_tester@lemmy.ml 11 months ago
- Podman solves the root issue
- you can inspect the stuff. You don’t have to, but it helps if you’re not paranoid with popular and widespread images
- I have no mess
It’s great that you do install things on bare metal, I did that in the beginning until I discovered docker and I will never go back. Docker/ podman compose is just so good
TCB13@lemmy.world 11 months ago
ericjmorey@programming.dev 11 months ago
It cuts both ways. Less commercial interest means only hobby level development (which can be high quality, but is typically slow and unpolished for users).
So you can spend your energy on making up the gap between the ease of use of the commercially supported software or you can have free time for things you’re more interested in and jump ship when they squeeze too hard for cash.
azdle@news.idlestate.org 11 months ago
Less commercial interest means only hobby level development
Podman is developed by RedHat: github.com/containers/podman/graphs/contributors
ericjmorey@programming.dev 11 months ago
Podman supports Docker images and makes things easier for users in doing so.
beta_tester@lemmy.ml 11 months ago
What’s the issue with podman?
nonprofitparrot@lemmy.world 11 months ago
In my personal experience, it’s just not as fully featured.
beta_tester@lemmy.ml 11 months ago
What is it missing that all the benefits wouldn’t make up?
lemmyvore@feddit.nl 11 months ago
I mean, “it’s easier to use” is a pretty good quality to have. People tend to pick the most user-friendly and time-saving solution, should we really be surprised? On the contrary, I think FOSS should strive to be easier to use.
TCB13@lemmy.world 11 months ago
I mean, “it’s easier to use” is a pretty good quality to have. People tend to pick the most user-friendly and time-saving solution
And they don’t consider anything else and they they get themselves into CentOS situations.
I think FOSS should strive to be easier to use.
Yes so do I.
lemmyvore@feddit.nl 11 months ago
And they don’t consider anything else and they they get themselves into CentOS situations. Or large monopolies like what Microsoft has over Office.
But so what? The kind of people who do this were not going to be grand contributors to FOSS anyway. They’re just consumers, not makers, and they consume the products that make the most sense to them.
Also, let’s not lay everything solely on consumer stupidity. Microsoft spends a crapton of money lobbying governments, administrations, universities, schools and so on around the world to maintain their monopoly. Corruption at all levels of society is a big factor.
Molecular0079@lemmy.world 11 months ago
Out of curiosity, what reverse proxy docker do you use that can run rootless in podman? My main issue, and feel free to correct me if I am wrong, is that most of them require root. And then its not possible to easily connect those containers into the same network as your rootless containers so then your other containers have to be root anyways. I don’t really want my other containers to be host accessible, I want them to be only accessible from within the podman network that the reverse proxy has access to.
And then there’s issues where you have to enable lingering processes for normal users and also let it access ports < 1024, makes using docker-compose a pain, etc. I haven’t really found a good solution for rootless, but I really want to eventually move that way.
vzq@lemmy.blahaj.zone 11 months ago
beta_tester@lemmy.ml 11 months ago
Tbo, I’ve got a pi that runs only the reverse proxy and it works and I don’t touch it until it breaks
Shimitar@feddit.it 11 months ago
Need to study podman probably, stuff running as root is my main dislike.
Probably if in only used docker images created by me I would be less concerned of losing track of what I am really deploying, but this would deflect the main advantage of easy deploy?
Portability is a point I didn’t considered too… But rebuilding a bare metal server properly compatimentized took me a few hours only, so is that really so important?
beta_tester@lemmy.ml 11 months ago
You can run docker rootless docs.docker.com/engine/security/rootless/ but you have to switch to podman some day anyway, althiugh that might be in a far away future.
If you are concerned about root you may be concerned about the docker port dilemma as well, podman solves that as well
Passerby6497@lemmy.world 11 months ago
but you have to switch to podman some day anyway
Can you elaborate on this?
beta_tester@lemmy.ml 11 months ago
Unfortunately I do not have a source but to me it was like podman would replace docker as the container technology since red hat focuses on podman and not docker anymore and kubernetes doesn’t support docker anymore. Transitioning obviously takes ages because of companies being very slow.
null@slrpnk.net 11 months ago
But rebuilding a bare metal server properly compatimentized took me a few hours only, so is that really so important?
Depends on how much you value your time.
Compare a few hours on bare metal to a few minutes with containers. Then consider that you also spend extra time on bare metal cleaning up messes. Containers don’t make a mess in the first place.
QuikxSpec@lemmy.world 11 months ago
Do you have a preferred resource? I’m setting up my NAS and starting to prepare for setting up containers. In the meantime it’s just static storage until I get comfortable
beta_tester@lemmy.ml 11 months ago
No, just general documentation and arch wiki
redcalcium@lemmy.institute 11 months ago
Dive is a great tool for inspecting docker images. I wish I found it sooner.
droolio@feddit.uk 11 months ago
Thank you for posting this, hadn’t heard of it before.