From 1be368753bf04b23f64355f239cfa2dc749b234a Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Mon, 16 Sep 2024 14:59:20 +0200 Subject: [PATCH] Debian 10 is EOL --- .github/workflows/build.yml | 3 --- Dockerfile.debian | 2 +- README.md | 6 ++---- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b5e712..168c3b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,9 +28,6 @@ jobs: fail-fast: false matrix: include: - - image: debian:10-slim - dockerfile: Dockerfile.debian - platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8 - image: debian:11-slim dockerfile: Dockerfile.debian platforms: linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x diff --git a/Dockerfile.debian b/Dockerfile.debian index 952b2ff..c97537d 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -1,4 +1,4 @@ -ARG base_image=debian:10-slim +ARG base_image=debian:12-slim FROM "$base_image" RUN set -eux \ diff --git a/README.md b/README.md index b9ebaa8..4faa414 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,6 @@ Images are available on: Example `base_system` arguments : -- `debian:10-slim` - `debian:11-slim` - `debian:12-slim` - `debian:sid-slim` @@ -44,7 +43,6 @@ based on `-slim` versions of Debian images. The following containers are available from [Docker Hub](https://hub.docker.com/r/fauust/docker-systemd). ```console -❯ docker pull ghcr.io/fauust/docker-systemd:debian-10 ❯ docker pull ghcr.io/fauust/docker-systemd:debian-11 ❯ docker pull ghcr.io/fauust/docker-systemd:debian-12 ❯ docker pull ghcr.io/fauust/docker-systemd:debian-sid @@ -75,7 +73,7 @@ You can also use [podman](https://podman.io/) that does not require it, see below. ```console -❯ docker run --name init-test --rm --privileged -d -v /sys/fs/cgroup:/sys/fs/cgroup:ro fauust/docker-systemd:debian-10 +❯ docker run --name init-test --rm --privileged -d -v /sys/fs/cgroup:/sys/fs/cgroup:ro fauust/docker-systemd:debian-sid ❯ docker exec -it init-test bash root@59c9e3e924e7:/# apt update && apt install procps ... @@ -95,7 +93,7 @@ Podman is much more "systemd friendly", see Here is how to use those containers with podman: ```console -❯ podman run --name init-test --rm -d fauust/docker-systemd:debian-10 +❯ podman run --name init-test --rm -d fauust/docker-systemd:debian-sid ❯ podman exec -it init-test bash root@181cc7d48a8a:/# apt update && apt install procps ...