by molecule on 9/8/21, 8:18 PM with 85 comments
by williamsmj on 9/8/21, 9:20 PM
$ brew install podman
$ podman machine init
$ podman machine start
$ alias docker=podman
If you're on an M1 you may run into https://github.com/containers/podman/issues/10577 (which is WIP, and may have been resolved by https://github.com/containers/podman/pull/11451).by suchar on 9/8/21, 9:53 PM
Also, I think we are losing here access to the Docker socket on the host (inside the virtual machine it can be emulated using docker-podman).
by deathanatos on 9/8/21, 11:33 PM
I tried podman; two hurdles I haven't figured out: 1/ sending the context is incredibly slow on podman, compared to Docker+Buildkit. It's definitely trying to send literally the entire context, like Docker without Buildkit does, but even more slowly… 2/ private registry auth. Haven't really tried too hard, but it's not just "a drop in replacement"; I think I need to somehow auth with podman specifically. (Part of this is our external registry is ACR, and we auth with `az`, but I think `az` is presuming Docker…)
by lpasselin on 9/8/21, 9:00 PM
by inyorgroove on 9/8/21, 9:06 PM
I need this volume mounting to get development code changes into the container in a reasonable time and the alternative performance feels like running on a standard hard drive compared to nvme ssd.
by tambourine_man on 9/8/21, 10:11 PM
I remember HashiCorp even favoring a newer product they were trying to promote.
by throwaway234565 on 9/8/21, 9:35 PM
by mbell on 9/8/21, 9:55 PM
by swlkr on 9/8/21, 10:02 PM
by no_wizard on 9/9/21, 12:52 AM
by hendry on 9/9/21, 3:21 AM
by chrisweekly on 9/9/21, 11:43 AM
by CR007 on 9/8/21, 11:50 PM
Thanks redhat!
by mikesabbagh on 9/9/21, 12:05 AM
for example to see the last conatainer's logs:
podman logs -l
just beautiful!