These are docker images based off of official Debian images on Docker Hub.
The images on Docker Hub are not always updated as regularly as I would like. They can ship vulnerable libraries/binaries so in order to combat that, I am maintaining my own rebased images. There are no customizations outside of patching and rebasing the images.
The following is a list of multi-arch (amd64 & arm64) tags for each release.
-<arch> appended (e.g. - mbentley/debian:latest-amd64)| Distro | Base Image | Rebased Image |
|---|---|---|
| Debian | debian:sid | mbentley/debian:sid |
| Debian | debian:latestdebian:trixie | mbentley/debian:latestmbentley/debian:trixie |
| Debian | debian:bookworm | mbentley/debian:bookworm |
| Debian | debian:bullseye | mbentley/debian:bullseye |
| Debian | debian/eol:buster | mbentley/debian:buster |
| Debian | debian/eol:stretch | mbentley/debian:stretch |
| Debian | debian/eol:jessie | mbentley/debian:jessie |
for VERSION in sid trixie bookworm bullseye
do
docker build --pull --build-arg IMAGE_TAG="${VERSION}" -t "mbentley/debian:${VERSION}" -f Dockerfile .
done
for VERSION in buster stretch jessie
do
docker build --pull --build-arg IMAGE_TAG="${VERSION}" -t "mbentley/debian:${VERSION}" -f Dockerfile.eol .
done
Content type
Image
Digest
sha256:a8c1fdf3c…
Size
48.2 MB
Last updated
1 day ago
docker pull mbentley/debian