Earlier quoted context omitted.
The main use case right now is that your company won't spring for a docker desktop license (and you work in a windows/mac shop). It works well enough for single docker images, but I've never gotten it to work well with a complicated docker-compose set-up (I haven't tried in a couple months though, so go check the docs before you write it off).
The macOS Docker Desktop app (I haven’t experienced other versions) is free and works fine. The paid upgrade is only required for certain features that I would imagine many teams don’t need. My complaint with it is that I’d prefer if there was a 100% feature-parity CLI interface so it could run in the background, and that it should be open source. To have a low-level developer tool that’s required to be in my menubar…
Podman Desktop Companion GUI – Parity on All Major Operating Systems
31–40 of 118 posts
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#32Is the Podman CLI both command-compatible and flag-compatible with the Docker CLI? If it is, or if there were a command translation layer to transform docker cli stanzas to the podman equivalent, I'd love to dump and forget about docker forever. Please keep pushing Team Podman! Self-respecting nerds everywhere are rooting for (and counting on) you!
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#33Is the Podman CLI both command-compatible and flag-compatible with the Docker CLI? If it is, or if there were a command translation layer to transform docker cli stanzas to the podman equivalent, I'd love to dump and forget about docker forever. Please keep pushing Team Podman! Self-respecting nerds everywhere are rooting for (and counting on) you!
It is! At least 99%, in my experience. The one big difference is that Podman is "daemonless", which is actually a huge advantage in a lot of cases. The one downside is that it won't automatically restart your containers if your host machine reboots.
Once generated and enabled, your pods/containers act as systemd services that can be started, stopped etc.
[0]: https://docs.podman.io/en/latest/markdown/podman-generate-sy...
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#34Anyone know if podman has an equivalent to `docker buildx` yet? Right now I use docker a lot to build arm images to deploy on e.g. Raspberry Pis.
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#35Also in the same space is https://rancherdesktop.io/ .
> Also in the same space is https://rancherdesktop.io/ . Am not familiar with Rancher Desktop, but briefly looking at their website it has a Docker CLI dependency which surely would land it in the Docker licensing controversy space, no ?
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#36Would this work for graphical applications? For example, could I make a container and run a linux game under X or Wayland on my Mac?
Or just replace MacOS with Linux.
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#37Earlier quoted context omitted.
It is! At least 99%, in my experience. The one big difference is that Podman is "daemonless", which is actually a huge advantage in a lot of cases. The one downside is that it won't automatically restart your containers if your host machine reboots.
For that Podman provides a nifty little trick: `podman generate systemd`[0] which allows you to generate systemd unit files for your pods and/or containers. Once generated and enabled, your pods/containers act as systemd services that can be started, stopped etc. [0]: https://docs.podman.io/en/latest/markdown/podman-generate-sy...
I reboot my machine after kernel updates and everything comes up flawlessly.
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#38Anyone know if podman has an equivalent to `docker buildx` yet? Right now I use docker a lot to build arm images to deploy on e.g. Raspberry Pis.
Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#39Re: Podman Desktop Companion GUI – Parity on All Major Operating Systems
#40So question from novice in containers, podman vs docker why should i consider switching from docker?