distroless VS podman

Compare distroless vs podman and see what are their differences.

distroless

🥑 Language focused docker images, minus the operating system. (by GoogleContainerTools)

podman

Podman: A tool for managing OCI containers and pods. (by containers)
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
distroless podman
124 377
19,185 24,008
1.4% 1.7%
9.2 10.0
3 days ago 3 days ago
Starlark Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

distroless

Posts with mentions or reviews of distroless. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-19.
  • Distroless: Language focused Docker images, minus the operating system
    1 project | news.ycombinator.com | 1 Sep 2024
  • Docker, Linux, Security. Kinda.
    7 projects | dev.to | 19 May 2024
    That's how we get distroless. Distroless base images follow the same pattern as alpine base docker images, as in, less functionality while still keeping enough functionality to be able to do the job and minimize the attack surface. Minimizing a base image like this means that the base images are very specialized so we have base images for golang, python, java and the like.
  • Chainguard Images now available on Docker Hub
    3 projects | news.ycombinator.com | 14 Mar 2024
    lots of questions here regarding what this product is. I guess i can provide some information for the context, from a perspective of an outside contributor.

    Chainguard Images is a set of hardened container images.

    They were built by the original team that brought you Google's Distroless (https://github.com/GoogleContainerTools/distroless)

    However, there were few problems with Distroless:

    1. distroless were based on Debian - which in turn, limited to Debian's release cadence for fixing CVE.

    2. distroless is using bazelbuild, which is not exactly easy to contrib, customize, etc...

    3. distroless images are hard to extend.

    Chainguard built a new "undistro" OS for container workload, named Wolfi, using their OSS projects like melange (for packaging pkgs) and apko (for building images).

    The idea is (from my understanding) is that

    1. You don't have to rely on upstream to cut a release. Chainguard will be doing that, with lots of automation & guardrails in placed. This allow them to fix vulnerabilties extremely fast.

  • Language focused Docker images, minus the operating system
    1 project | news.ycombinator.com | 21 Feb 2024
  • Using Alpine can make Python Docker builds 50× slower
    1 project | news.ycombinator.com | 28 Dec 2023
    > If you have one image based on Ubuntu in your stack, you may as well base them all on Ubuntu, because you only need to download (and store!) the common base image once

    This is only true if your infrastructure is static. If your infrastructure is highly elastic, image size has an impact on your time to scale up.

    Of course, there are better choices than Alpine to optimize image size. Distroless (https://github.com/GoogleContainerTools/distroless) is a good example.

  • Smaller and Safer Clojure Containers: Minimizing the Software Bill of Materials
    1 project | /r/Clojure | 7 Dec 2023
  • Long Term Ownership of an Event-Driven System
    4 projects | dev.to | 2 Oct 2023
    The same as our code dependencies, container updates can include security patches and bug fixes and improvements. However, they can also include breaking changes and it is crucial you test them thoroughly before putting them into production. Wherever possible, I recommend using the distroless base image which will drastically reduce both your image size, your risk vector, and therefore your maintenance version going forward.
  • Minimizing Nuxt 3 Docker Images
    2 projects | dev.to | 5 Aug 2023
    # Use a large Node.js base image to build the application and name it "build" FROM node:18-alpine as build WORKDIR /app # Copy the package.json and package-lock.json files into the working directory before copying the rest of the files # This will cache the dependencies and speed up subsequent builds if the dependencies don't change COPY package*.json /app # You might want to use yarn or pnpm instead RUN npm install COPY . /app RUN npm run build # Instead of using a node:18-alpine image, we are using a distroless image. These are provided by google: https://github.com/GoogleContainerTools/distroless FROM gcr.io/distroless/nodejs:18 as prod WORKDIR /app # Copy the built application from the "build" image into the "prod" image COPY --from=build /app/.output /app/.output # Since this image only contains node.js, we do not need to specify the node command and simply pass the path to the index.mjs file! CMD ["/app/.output/server/index.mjs"]
  • Build Your Own Docker with Linux Namespaces, Cgroups, and Chroot
    6 projects | news.ycombinator.com | 26 Jun 2023
    Lots of examples without the entire OS as other comments mention, an example would be Googles distroless[0]

    [0]: https://github.com/GoogleContainerTools/distroless

  • Reddit temporarily ban subreddit and user advertising rival self-hosted platform (Lemmy)
    2 projects | /r/selfhosted | 7 Jun 2023
    Docker doesn't do this all the time. Distroless Docker containers are relatively common. https://github.com/GoogleContainerTools/distroless

podman

Posts with mentions or reviews of podman. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-12-03.
  • Day 3: What is Docker and why should I care?
    7 projects | dev.to | 3 Dec 2024
    Docker is a company that maintains the Docker software and also offers a cloud service to run Docker containers in the cloud. They run DockerHub, which is a platform to store share and run Docker images. The actual standard for Docker containers is called OCI (Open Container Initiative). Because Docker is based on OCI there are many other tools that can interact with Docker containers, like Podman or Lima. If you want to go really deep, I really recommend reading the OCI specification! It's long but super interesting.
  • Personal TODO list on how I set up my dev machine
    14 projects | dev.to | 19 Nov 2024
    I install docker (this is quite a boring process, to make it sudoers and so I can run without sudo). On Mac instead I use podman.
  • Bootstrap your projects with Docker init
    3 projects | dev.to | 18 Nov 2024
    Nowadays, we can’t talk about Docker without mentioning it’s alternative Podman.
  • We're Leaving Kubernetes
    15 projects | news.ycombinator.com | 4 Nov 2024
    I strongly recommend just switching the Dev environment over to Linux and taking advantage of tools like "distrobox" and "toolbx".

    https://github.com/89luca89/distrobox

    https://containertoolbx.org/

    It is sorta like Vagrant, but instead of using virtualbox virtual machines you use podman containers. This way you get to use OCI images for your "dev environment" that integrates directly into your desktop.

    https://podman.io/

    There is some challenges related to usermode networking for non-root-managed controllers and desktop integration has some additional complications. But besides that it has almost no overhead and you can have unfettered access to things like GPUs.

    Also it is usually pretty easy to convert your normal docker or kubernetes containers over to something you can run on your desktop.

    Also it is possible to use things like Kubernetes pods definitions to deploy sets of containers with podman and manage it with systemd and such things. So you can have "clouds of containers" that your dev container needs access to locally.

    If there is a corporate need for window-specific applications then running Windows VMs or doing remote applications over RDP is a possible work around.

    If everything you are targeting as a deployment is going to be Linux anything then it doesn't make a lot of sense to jump through a bunch of hoops and cause a bunch of headaches just to avoid having it as workstation OS.

  • Self-updating Containers on Linux with Quadlet aka podman-system-generator
    3 projects | dev.to | 30 Oct 2024
    If you are using a modern Linux system like Fedora 40, you may want to configure systemd which manages services, and podman to run containers as an alternative to Docker. This setup makes it possible to run rootless containers as a normal user without worrying about giving the container global permissions.
  • You run containers, not dockers - Discussing Docker variants, components and versioning
    9 projects | dev.to | 27 Oct 2024
    I admit the title of this section sounds worse than it is, but the fact is that sometimes when you install Podman, you can also have an alias called "docker" pointing to "podman". That can make you believe that you are running Docker and come to the Docker forum asking about an issue which is actually not related to Docker. The alias exists because Podman tries to keep a similar command line interface to the interface of Docker, so when someone relies on an existing docker command, they don't have to rewrite their scripts if they are lucky.
  • Why Docker is Losing Its Edge in Recent Years
    1 project | dev.to | 9 Oct 2024
    3.Podman: As a daemonless container engine, Podman offers a command-line interface similar to Docker but does not require root privileges, providing an additional security buffer.
  • 200GB Free Cloud for Your Files
    1 project | news.ycombinator.com | 6 Oct 2024
    Both docker and podman support rootless containers. Podman is in no way "better" or "more modern" as you suggest, mostly everyone still uses docker.

    https://docs.docker.com/engine/security/rootless/

    https://github.com/containers/podman/blob/main/docs/tutorial...

  • How I deploy Laravel apps in Docker with just two commands
    4 projects | dev.to | 7 Sep 2024
    This recipe allows you to deploy your app in a redistributable, virtualized, os agnostic, self-contained and self-configured software image and run it in virtualization engines such as Docker or Podman. It even includes things out of the box like the supervisor's tidy configuration for handling your queues, nice defaults for php, opcache and php-fpm, nginx, etc.
  • Minimal tips to run isolated code
    3 projects | dev.to | 4 Sep 2024
    Thus motivated, install Podman Desktop, a Docker-compatible Linux containers tool with Podman. After Podman Desktop is installed and running, open a terminal and

What are some alternatives?

When comparing distroless and podman you can also consider the following projects:

iron-alpine - Hardened alpine linux baseimage for Docker.

containerd - An open and reliable container runtime

spring-boot-jib - This project is about Containerizing a Spring Boot Application With Jib

Portainer - Making Docker and Kubernetes management easy.

jib - 🏗 Build container images for your Java applications.

lima - Linux virtual machines, with a focus on running containers

dockerfiles - Various Dockerfiles I use on the desktop and on servers.

kaniko - Build Container Images In Kubernetes

docker-alpine - Official Alpine Linux Docker image. Win at minimalism!

rancher - Complete container management platform

whalebrew - Homebrew, but with Docker images

nerdctl - contaiNERD CTL - Docker-compatible CLI for containerd, with support for Compose, Rootless, eStargz, OCIcrypt, IPFS, ...

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured

Did you konow that Starlark is
the 68th most popular programming language
based on number of metions?