From dcd3b984f43bffb843f5e56e2c37cc2079970f86 Mon Sep 17 00:00:00 2001 From: Ford McDonald Date: Wed, 22 May 2024 14:26:59 -0400 Subject: [PATCH] remove archive from cleanup process --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b14a08..ea5bef9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ RUN chmod +x /cleanup_cache.sh CMD /usr/bin/find $PARENT_PATH/home/logs -mindepth 1 -type f -name '*.log.*' -mtime +$DAYS_TO_CLEAN -delete && \ /usr/bin/find $PARENT_PATH/prearchive -mindepth 1 -type f -mtime +$DAYS_TO_CLEAN -delete && \ - /usr/bin/find $PARENT_PATH/archive -mindepth 1 -type f -mtime +$DAYS_TO_CLEAN -delete && \ /usr/bin/find $PARENT_PATH/build -mindepth 1 -type f -mtime +$DAYS_TO_CLEAN -delete && \ /usr/bin/find $PARENT_PATH/inbox -mindepth 1 -type f -mtime +$DAYS_TO_CLEAN -delete && \ /cleanup_cache.sh