podman

Run and manage containers and pods without requiring a daemon.

brewmacoslinux
Try with needOr install directly
Source

About

Tool for managing OCI containers and pods

Commands

podmanpodman-remotepodman-compose

Examples

run a docker container locally$ podman run -it ubuntu:latest bash
list all running containers$ podman ps
build a container image from dockerfile$ podman build -t myimage:latest .
start and stop containers without docker daemon$ podman start mycontainer && podman stop mycontainer
run multiple containers together with compose$ podman-compose up -d