From a1dcabe0945aa606f685dba42eb44898c0983b98 Mon Sep 17 00:00:00 2001 From: xZero707 Date: Sun, 2 Mar 2025 00:12:15 +0100 Subject: [PATCH] Update to version 3.2.0.2 --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d7a350..17bf1ec 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ The simplest and fastest way to get S6 supervisor in your image +This docker image packages s6 supervisor overlay based on https://github.com/just-containers/s6-overlay releases. + + NOTE: GitHub Actions builds are currently broken. Images are, however manually built, so you should be still getting latest version. ### Usage @@ -10,7 +13,7 @@ COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:latest ["/", "/"] ``` or with fixed version: ```Docker -COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.2.1 ["/", "/"] +COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.2.0.2 ["/", "/"] ``` That's it! @@ -28,7 +31,7 @@ FROM scratch AS rootfs COPY ["./rootfs", "/"] # Install S6 -COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.2.1 ["/", "/"] +COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.2.0.2 ["/", "/"] # ---------------------