Comment on Podman or rootless docker?

herrfrutti@lemmy.world ⁨1⁩ ⁨month⁩ ago

I’m running podman and podman-compose with no problem. And I’m happy. At first I was confused by the uid and gid mapping the containers have, but you’ll get used to it.

This are some notes I took, please don’t take all of it for the right choice.

Podman-Stuff

github.com/containers/…/rootless_tutorial.md

storage.conf

To use the fuse-overlay driver, the storage must be configured:

.config/containers/storage.conf

[storage]
  driver = "overlay"
  runroot = "/run/user/1000"
  graphroot = "/home/<user>/.local/share/containers/storage"
  [storage.options]
    mount_program = "/usr/bin/fuse-overlayfs"

Lingering (running services without login / after logout)

github.com/containers/podman/issues/12001

unix.stackexchange.com/…/how-to-apply-lingering-i…

sudo loginctl enable-linger <user>

source
Sort:hotnewtop