Update readme

- Add missing entrypoint directive to the example

- Add example configuration that can be passed to S6
This commit is contained in:
Aleksandar Puharic 2023-03-17 17:45:02 +01:00
parent cbd004f849
commit 3b7a3541af
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB

View File

@ -34,5 +34,14 @@ 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"]
```