67
submitted 8 months ago by [email protected] to c/[email protected]
top 50 comments
sorted by: hot top controversial new old
[-] [email protected] 48 points 8 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".

[-] [email protected] 31 points 8 months ago

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.

[-] [email protected] 1 points 8 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.

[-] [email protected] 1 points 8 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.

load more comments (11 replies)
[-] [email protected] 22 points 8 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.

[-] [email protected] 3 points 8 months ago* (last edited 8 months ago)

How do you automatically start podman containers? I currently just manually add systemd entries but that’s a lot more cumbersome than Docker which doesn’t require you to do anything at all.

[-] [email protected] 6 points 8 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.

[-] [email protected] 4 points 8 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. 😉

[-] [email protected] 2 points 8 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.

[-] [email protected] 1 points 8 months ago

That’s an interesting way to do it. Do you have everything in 1 compose file?

[-] [email protected] 2 points 8 months ago

I have one Compose file per stack, which is an application and all of its containers, databases, etc. Pretty much the same way I organized things with just Docker.

[-] [email protected] 0 points 8 months ago

i would like to try.. but as far as i know, there is no "docker compose up -d"

[-] MartianSands 10 points 8 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

[-] [email protected] 4 points 8 months ago
[-] [email protected] 1 points 8 months ago
[-] [email protected] 2 points 8 months ago* (last edited 8 months ago)

Check my comment history for an example of a simple bind mount compose.yaml I use for developing a small Python project. It's exactly the same as Docker Compose (since Podman Compose follows the Compose spec) but if you're just getting started, it might be a good skeleton to build on.

[-] [email protected] 2 points 8 months ago

i have all my stacks on docker compose. if it follows the same specks, i would only need to convert volumes and networks

[-] [email protected] 17 points 8 months ago

Don't overthink this. Just start using something.

[-] [email protected] 5 points 8 months ago

This is the best advice. Bloody hard for me to do, however. Not sure why.

[-] [email protected] 8 points 8 months ago

Podman, dockerd is a single point of failure

[-] [email protected] 7 points 8 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.

[-] [email protected] 3 points 8 months ago* (last edited 8 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.

[-] [email protected] 0 points 8 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.

[-] [email protected] 1 points 8 months ago* (last edited 7 months ago)

This sounds like something on your end as I get cached builds every time, rootlessly even. Podman also supports cache mounts.

[-] [email protected] 7 points 8 months ago

definitely docker. it just has so much more documentation and community involvement.

[-] [email protected] 6 points 8 months ago

On what host system?

[-] [email protected] 4 points 8 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.

[-] [email protected] 4 points 8 months ago
[-] [email protected] 3 points 8 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

[-] [email protected] 3 points 8 months ago

Docker because it just works. Podman has another 5 years (hopefully) to get this part right IMO.

[-] [email protected] 3 points 8 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.

[-] [email protected] 2 points 8 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.

[-] [email protected] 2 points 8 months ago

I use podman, even when I started out. But I am a tinkerer. I think for the average beginner, docker will be easier as so much out there assumes you are using Docker only, and hard codes it. Unless you wanna deal with that, use Docker.

[-] [email protected] 2 points 8 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.

[-] [email protected] 1 points 8 months ago

Whichever one is better supported by the containers you want to run.

[-] [email protected] 4 points 8 months ago

They both support the same containers

load more comments (5 replies)
load more comments
view more: next ›
this post was submitted on 02 Nov 2023
67 points (95.9% liked)

Selfhosted

37939 readers
435 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS