Skip to content

Commit

Permalink
Debian 10 is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Sep 16, 2024
1 parent 0442192 commit 1be3687
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG base_image=debian:10-slim
ARG base_image=debian:12-slim
FROM "$base_image"

RUN set -eux \
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Images are available on:

Example `base_system` arguments :

- `debian:10-slim`
- `debian:11-slim`
- `debian:12-slim`
- `debian:sid-slim`
Expand All @@ -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
Expand Down Expand Up @@ -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
...
Expand All @@ -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
...
Expand Down

0 comments on commit 1be3687

Please sign in to comment.