Compare commits

...

3 Commits

Author SHA1 Message Date
fecbc4ffc7 Add fuse-overlayfs to container 2024-04-20 16:14:24 +00:00
33216e5db3 Supress tini warning 2024-04-20 16:14:03 +00:00
64fb20c1d2 Merge pull request 'Add healthcheck and create dependent services in supervisord' (#15) from additional-debug into develop
All checks were successful
Build Develop Image / Build Image (push) Successful in 7m26s
Build Develop Image / Notify (push) Successful in 2s
Reviewed-on: #15
2024-04-19 17:31:03 +00:00

View File

@ -13,7 +13,7 @@ RUN make clean && make build
FROM docker:25.0.5-dind FROM docker:25.0.5-dind
USER root USER root
RUN apk add --no-cache \ RUN apk add --no-cache \
git bash supervisor python3 py3-pip git bash supervisor python3 py3-pip fuse-overlayfs
RUN pip3 install --break-system-packages supervisord-dependent-startup RUN pip3 install --break-system-packages supervisord-dependent-startup
@ -28,6 +28,9 @@ RUN chmod +x /healthcheck.sh
ENV DOCKER_PRUNE_INTERVAL="0 0 * * *" ENV DOCKER_PRUNE_INTERVAL="0 0 * * *"
# Supress tini warning
ENV TINI_SUBREAPER=true
# Add Crontab for root user # Add Crontab for root user
RUN echo "${DOCKER_PRUNE_INTERVAL} echo Pruning docker volumes && docker volume prune -af" > .crontab.txt && crontab .crontab.txt RUN echo "${DOCKER_PRUNE_INTERVAL} echo Pruning docker volumes && docker volume prune -af" > .crontab.txt && crontab .crontab.txt