If your distro offers it, rootless podman + podman system service is the best setup, IMO. That will give you a docker
command that is 1-to-1 compatible with docker and lets you use tools like docker-compose that expect a docker service socket. Then you can just follow tutorials that only explain things for docker.
Docker vs Podman, which one to choose for a beginner and why ?
Submitted 11 months ago by folak@lemmy.world to selfhosted@lemmy.world
Comments
azdle@news.idlestate.org 11 months ago
lemmyvore@feddit.nl 11 months ago
What is rootless bring brought up so much? It’s a container, it’s isolated from the host anyway, what does it matter what user runs inside? And if something breaks into the container they can trash the app in it and the shared volumes anyway, even if they’re not root.
azdle@news.idlestate.org 11 months ago
Defense in depth. If something escapes the container it’s limited to only what’s under that user and not the whole system. Having access to the whole system makes it easier for malware to hide itself.
MartianSands@sh.itjust.works 11 months ago
Because a container is only as isolated from the host as you want it to be.
Suppose you run a container and mount the entire filesystem into it. If that container is running as root, it can then read and write anything it likes (including password databases and /etc/sudo)
florian@lemmy.world 11 months ago
It depends on the use case. The most common security issue I have seen with docker is on Linux desktop systems: docker deamon runs as root and user wants to use it to test all kinds of containers. So they make the docker socket accessible to the user, to lazy to use “sudo docker” every time… Having access to the docker socket means having the same permissions as the one running the daemon: root . Your browser effectively now has root permissions. At this point you could just login as root to your desktop.
worldofgeese@lemmy.world 11 months ago
There’s real usability benefits too. I’ve collected some anecdotes from Reddit:
Rootless podman is my first choice for using containers now, it works fantastically well in my experience. It’s so much nicer to have all my container related stuff like volumes, configs, the control socket, etc. in my home directory and standard user paths vs. scattered all over the system. Permission issues with bind mounts just totally disappear when you go rootless. It’s so much easier and better than the root privileged daemon.
If you are on Linux, there is the fantastic podman option “–userns keep-id” which will make sure the uid inside+the container is the same as your current user uid.+
Yeah in my experience with rootless you don’t need to worry about UID shenanigans anymore. Containers can do stuff as root (from their perspective at least) all they want but any files you bind mount into the container are still just owned/modified by your user account on the host system (not a root user bleeding through from the container).
The permissions (rwx) don’t change, but the uid/gid is mapped. E.g. uid 0 is the running user outside the container, by uid 1 will be mapped to 100000 (configurable), and say 5000 inside the container is mapped to 105000. I don’t remember the exact mapping but it works roughly like that.
ssdfsdf3488sd@lemmy.world 11 months ago
will it let you do rootless nfs mounts into the container? That’s the showstopper for me, as that is by far the best way to just make this all work within the context of my file storage.
Molecular0079@lemmy.world 11 months ago
My only issue with rootless is that SWAG doesn’t work with it, otherwise my other containers could be rootless. However, I heard connecting rootful and rootless containers is impossible so all my containers are rootful right now.
Yoddel_Hickory@lemmy.ca 11 months ago
Podman, rootless containers work well, and there is no central process running everything. I like that starting containers on boot is integrated with systemd.
qaz@lemmy.world 11 months ago
How do you automatically start podman containers?
Yoddel_Hickory@lemmy.ca 11 months ago
I use Quadlet, which is now merged in podman. The only issue I had with it is running system systemd services as other (rootless) users, I can’t get it to create cid files that the users can access. In those cases only, I have to modify the generated services files, which defeats the purpose.
completion@lemmy.one 11 months ago
lemmyvore@feddit.nl 11 months ago
That’s how you do it, you have to write systemd config files for each container. And because it was cumbersome they’ve come up with third party tools that write them for you and launch the container. 😉
lespea@lemmy.world 11 months ago
witten@lemmy.world 11 months ago
Since I use Docker Compose with Podman, I just make a single systemd service to run Docker Compose on boot, thereby starting all my containers at once.
Discover5164@lemm.ee 11 months ago
i would like to try… but as far as i know, there is no “docker compose up -d”
MartianSands@sh.itjust.works 11 months ago
Podman supports docker compose just fine. You have to run it as a service, so that it can expose a socket like docker does, but it supports doing exactly that
Yoddel_Hickory@lemmy.ca 11 months ago
Apparently it does! podman-compose
thelastknowngod@lemm.ee 11 months ago
Don’t overthink this. Just start using something.
deadcatbounce@reddthat.com 11 months ago
This is the best advice. Bloody hard for me to do, however. Not sure why.
visnae@lemmy.world 11 months ago
Podman, dockerd is a single point of failure
Max_P@lemmy.max-p.me 11 months ago
I’d go Docker for the maturity. Podman is nice but I’ve definitely had some issues, and Buildah lacks any sort of caching and does unnecessary intermediate copies of the layers when pushing to a repository that really slows things down on larger apps/images.
iluminae@lemmy.world 11 months ago
Buildah lacks any sort of caching … what? assuming you are using a Containerfile… what? It’s… the same as docker on layer caching. The --cache-to and --cache-from flags are particularly sweet.
Max_P@lemmy.max-p.me 11 months ago
Maybe they changed it since last year, but it wouldn’t cache layers for me. Everytime I’d rebuild the app, it would re-run all the actions from the Containerfile. So a whole
npm install
each build even though I only changed a source file. Building the exact same file with Docker cached every layer as expected, so a config change would only change the last layer and be basically instant vs 5 minutes.The other issue with pushing to a registry was that it made a whole temporary tar of the image, then gzip it to disk again before starting to upload it. It blew up the disk space I had allocated to my VM really fast, and made uploading those images take minutes instead of seconds. Docker again seemingly does it all in a streaming fashion as it uploads, making it much faster.
This could have changed though, it’s evolving fast. Just didn’t fit my use case then. But because of those experiences, I’d say it’s probably a safer bet to learn Docker first since documentation is abundant, and there’s no little “oh I’m using Podman and have to use a slightly different syntax” gotchas to run into to make it hard for you.
theterrasque@infosec.pub 11 months ago
ithilelda@lemmy.world 11 months ago
definitely docker. it just has so much more documentation and community involvement.
ikidd@lemmy.world 11 months ago
If you’re running it for your own network, just use Docker. The tooling is way, way better for docker, especially for a beginner.
homemade_napalm@discuss.tchncs.de 11 months ago
On what host system?
SheeEttin@lemmy.world 11 months ago
Whichever one is better supported by the containers you want to run.
nonprofitparrot@lemmy.world 11 months ago
I do a lot of docker/k8s at work, and I use podman at home. Podman is very cool in theory but still rough around the edges. I recommend docker if you just want to get started, Podman is a little extra work.
possiblylinux127@lemmy.zip 11 months ago
Docker if you are unsure how to begin. You can use docker compose with configs you find on the internet.
If your interested in podman I would start by using it though distrobox. Distrobox is a tool that allows other Linux environments on your host system and is really good for development
Molecular0079@lemmy.world 11 months ago
I started with Docker and then migrated to Podman for the integrated Cockpit dashboard support. All my docker-compose files work transparently on top of rootful Podman so the migration was relatively easy. Things get finicky when you try to go rootless though.
I say try both. Rootful podman is gonna be closest to the Docker experience.
iluminae@lemmy.world 11 months ago
A year or two ago (whenever docker changed the business license of docker for Mac) I changed to podman and aliased docker=podman. It behaves the same, you would just about never know rootful podman vs docker.
Rootless podman is super cool and a much better security ideal - but comparing more apples to apples would be podman running as root vs docker.
lemmyvore@feddit.nl 11 months ago
Docker. It’s been around longer, it’s more polished, easier to learn, simpler to use, supported everywhere and by everything, easy to find solutions when you search for help, doesn’t depend on systemd, compatible with every container image out there, and you can do things with it even if it’s not the “correct” way to do it while podman will tell you “no, you can’t do that”.