From 6e40d442e545c4f5babaaccc89013103146874ff Mon Sep 17 00:00:00 2001 From: Jordan Zedi Date: Fri, 12 Jun 2026 18:02:50 +0200 Subject: [PATCH] The docker compose command at the end of the backup script was messy Indeed, the compose file specified with `-f` option should be set before the `-d` This is to correct this --- prod1-thehive/scripts/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prod1-thehive/scripts/backup.sh b/prod1-thehive/scripts/backup.sh index acd6a15..0d5be28 100755 --- a/prod1-thehive/scripts/backup.sh +++ b/prod1-thehive/scripts/backup.sh @@ -136,7 +136,7 @@ echo "Backup of certificates completed." ## Restart services echo "Restarting services..." -docker compose up -d -f ${DOCKER_COMPOSE_PATH}/docker-compose.yml +docker compose up -f ${DOCKER_COMPOSE_PATH}/docker-compose.yml -d