From 26b875246d4fc86980258804510e0e812da19b41 Mon Sep 17 00:00:00 2001 From: Wietse Wind Date: Sun, 8 Oct 2023 22:13:10 +0200 Subject: [PATCH] Move clean up to scripts, not conf --- docker-compose.yml | 2 +- {conf => scripts}/cleanup.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {conf => scripts}/cleanup.sh (100%) diff --git a/docker-compose.yml b/docker-compose.yml index aa3c2e0..bb00d29 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -50,7 +50,7 @@ services: stop_grace_period: 0s volumes: - ./store:/store - - ./conf/cleanup.sh:/cleanup.sh + - ./scripts/cleanup.sh:/cleanup.sh restart: unless-stopped healthcheck: test: TTL_MINUTES_PREGEN_XPOP=${TTL_MINUTES_PREGEN_XPOP:-60} TTL_DAYS_XPOP_SOURCE_FILES=${TTL_DAYS_XPOP_SOURCE_FILES:-30} sh /cleanup.sh diff --git a/conf/cleanup.sh b/scripts/cleanup.sh similarity index 100% rename from conf/cleanup.sh rename to scripts/cleanup.sh