experimental podman
Podman for Windows: https://github.com/containers/podman/blob/main/docs/tutorials/podman-for-windows.md
Creating an image using Podman. Let’s start by creating a Dockerfile with the following content:
FROM ubuntu:latest
RUN apt-get update && apt-get install -y nginx
CMD ["/usr/bin/nginx"]
EXPOSE 80
Create the image using the build command:
podman build .
Containerize a Spring Boot application with Podman Desktop