Skip to content

peterberweiler/docker-s6-overlay-installer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

[ GitHub ]       [ DockerHub ]       [ s6-overlay GitHub ]

s6-overlay-installer

This docker image provides an easy way to copy the platform specific installer for s6-overlay into your image.

COPY --from=peterberweiler/s6-overlay-installer:latest /installer /tmp/s6-overlay-installer
RUN chmod +x /tmp/s6-overlay-installer && /tmp/s6-overlay-installer /

 

⚠ This is still untested on most architectures ⚠

✔ Tested: amd64, arm/v7

❌ Untested: arm64, ppc64le, arm/v6, riscv64, mips64le, mips64, s390x, 386

 

Example Usage

FROM nginx

COPY --from=peterberweiler/s6-overlay-installer:latest /installer /tmp/s6-overlay-installer
RUN chmod +x /tmp/s6-overlay-installer && /tmp/s6-overlay-installer /

RUN mv /docker-entrypoint.sh /etc/cont-init.d/nginx-setup.sh
ENTRYPOINT ["/init"]
CMD ["nginx", "-g", "daemon off;"]

Available Tags

latest, v2.2.0.3