Nothing but s6-overlay
Go to file
2024-05-15 00:49:58 +02:00
.github Merge pull request #20 from N0rthernL1ghts/dependabot/github_actions/docker/setup-qemu-action-3 2024-05-14 23:37:26 +02:00
build Add support for s6-overlay v3.1.6.0 2024-05-15 00:49:58 +02:00
Dockerfile Bump Alpine version to 3.19 (Only used during build stages) 2024-05-14 23:26:56 +02:00
Dockerfile.legacy Bump Alpine version to 3.19 (Only used during build stages) 2024-05-14 23:26:56 +02:00
README.md Add support for ghcr.io 2023-04-11 12:43:59 +02:00

S6-overlay rootfs

The simplest and fastest way to get S6 supervisor in your image

Usage

COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:latest ["/", "/"]

or with fixed version:

COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.2.1 ["/", "/"]

That's it!

Note: We're moving to ghcr.io. docker.io/nlss/s6-rootfs will be kept up-to-date until May 2023, when is Docker sunsetting free teams.
It is highly recommended that you start using ghcr.io/n0rthernl1ghts/s6-rootfs.

# ---------------------
# Build root filesystem
# ---------------------
FROM scratch AS rootfs

# Copy over base files
COPY ["./rootfs", "/"]

# Install S6
COPY --from=ghcr.io/n0rthernl1ghts/s6-rootfs:3.1.2.1 ["/", "/"]


# ---------------------
# Build image
# ---------------------
FROM alpine:latest

COPY --from=rootfs ["/", "/"]
RUN apk add --update --no-cache nano

# S6 configuration - not required
# See: https://github.com/just-containers/s6-overlay#customizing-s6-overlay-behaviour
ENV S6_KEEP_ENVS6_KEEP_ENV=1
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2
ENV S6_CMD_RECEIVE_SIGNALS=1

# Important, this is required for S6 to work
ENTRYPOINT ["/init"]