From ff7f5e2dd348abe3385efb44878e74ce798a5a4d Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Sat, 20 Apr 2024 16:14:03 +0000 Subject: [PATCH 1/3] Supress tini warning --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 07039d3..ba9763f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,9 @@ RUN chmod +x /healthcheck.sh ENV DOCKER_PRUNE_INTERVAL="0 0 * * *" +# Supress tini warning +ENV TINI_SUBREAPER=true + # Add Crontab for root user RUN echo "${DOCKER_PRUNE_INTERVAL} echo Pruning docker volumes && docker volume prune -af" > .crontab.txt && crontab .crontab.txt From ae5f74958b8326e6933b29f7b06f38c48b92a08c Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Sat, 20 Apr 2024 16:14:24 +0000 Subject: [PATCH 2/3] Add fuse-overlayfs to container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba9763f..a852d95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN make clean && make build FROM docker:25.0.5-dind USER root 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 From 782ffee595a5143210dc6d75f745c1522b5887ad Mon Sep 17 00:00:00 2001 From: MrMeeb Date: Sat, 20 Apr 2024 17:17:02 +0000 Subject: [PATCH 3/3] Revert adding for fuse-overlayfs --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a852d95..ba9763f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN make clean && make build FROM docker:25.0.5-dind USER root RUN apk add --no-cache \ - git bash supervisor python3 py3-pip fuse-overlayfs + git bash supervisor python3 py3-pip RUN pip3 install --break-system-packages supervisord-dependent-startup