From 6ddc1c973a7108c2e28611c82c053da74932c532 Mon Sep 17 00:00:00 2001 From: davegallant Date: Tue, 12 Oct 2021 01:05:22 +0000 Subject: [PATCH] deploy: 385e432b350ea4217c7743dd5cfed935aefd228c --- .../index.html | 8 ++++---- page/search/index.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/blog/2021/10/11/replacing-docker-with-podman-on-macos-and-linux/index.html b/blog/2021/10/11/replacing-docker-with-podman-on-macos-and-linux/index.html index 92a01070..7f4c4001 100644 --- a/blog/2021/10/11/replacing-docker-with-podman-on-macos-and-linux/index.html +++ b/blog/2021/10/11/replacing-docker-with-podman-on-macos-and-linux/index.html @@ -185,7 +185,7 @@ Error: error preparing container 99ace1ef8a78118e178372d91fd182e8166c399fbebe0f6
podman run -p 8080 --rm -ti alpine
 

If you’re reading this from the future, there is a good chance specifying a port won’t be needed.

Aliasing docker with podman

-

Force of habit (or other scripts) may have you calling docker. To workaround this:

+

Force of habit (or other scripts) may have you calling docker. To work around this:

alias docker=podman
 

podman-compose

You may be wondering: what about docker-compose? Well, there happens to be a drop-in replacement for it: podman-compose.

@@ -219,9 +219,9 @@ podman start -a davegallant.github.io_hello_world_1 Hello world

This should more or less provide the same results you would come to expect with docker.

Summary

-

Installing podman on macOS was not seamless, but it was manageable well within 30 minutes of time. I would recommend podman to anyone who is tired of experiencing forced docker updates, and who wants to use a more modern technology for managing containers.

-

One thing to note is that there isn’t a graphical user interface for podman, but there is an open issue considering one. If you rely heavily on Docker Desktop’s UI, you may not be as interested in using podman just yet.

-

I had been experimenting with podman on Linux before writing this, but after listening to this podcast episode, I was inspired to try podman on macOS, and then write about my experience here.

+

Installing podman on macOS was not seamless, but it was manageable well within 30 minutes of time. I would recommend podman to anyone who is unhappy with experiencing forced docker updates, and who wants to use a more modern technology for managing containers.

+

One thing to note is that there isn’t a graphical user interface for podman, but there is an open issue considering one. If you rely heavily on Docker Desktop’s UI, you may not be as interested in using podman yet.

+

I had been experimenting with podman on Linux before writing this, but after listening to this podcast episode, I was inspired to give podman a tray on macOS.